Uses of Interface
net.morbz.minecraft.blocks.IBlock

Packages that use IBlock
net.morbz.minecraft.blocks   
net.morbz.minecraft.world   
 

Uses of IBlock in net.morbz.minecraft.blocks
 

Classes in net.morbz.minecraft.blocks that implement IBlock
 class CustomBlock
          A custom block for testing purposes and internal functions.
 class DirtBlock
          The class for the dirt and podzol blocks.
 class DoorBlock
          The class for doors of all materials.
 class PlanksBlock
          The class for wooden planks.
 class QuartzBlock
          The class for a quartz block.
 class RailBlock
          The class for basic rails.
 class RedstoneTorchBlock
          A redstone torch for both states active and inactive.
 class SandBlock
          The class for sand and red sand.
 class SandstoneBlock
          The class for sandstone blocks with different structures.
 class SimpleBlock
          The class for all blocks that don't have block data.
 class SpecialRailBlock
          The class for special rails (powered, detector and activator).
 class StainedBlock
          A class for all blocks that have a stained version (glass, wool, carpet, clay).
 class StoneBlock
          The class for the stone, granite, etc.
 class StoneBrickBlock
          The stone brick block with different structures.
 

Uses of IBlock in net.morbz.minecraft.world
 

Methods in net.morbz.minecraft.world with parameters of type IBlock
 void World.setBlock(int x, int y, int z, IBlock block)
          Sets a block at the given world position.
 void Section.setBlock(int x, int y, int z, IBlock block)
          Sets a block at the given position.
 void Region.setBlock(int x, int y, int z, IBlock block)
          Sets a block at the given position.
 void Chunk.setBlock(int x, int y, int z, IBlock block)
          Sets a block at the given position.