Uses of Interface
net.morbz.minecraft.world.IBlockContainer

Packages that use IBlockContainer
net.morbz.minecraft.world   
 

Uses of IBlockContainer in net.morbz.minecraft.world
 

Classes in net.morbz.minecraft.world that implement IBlockContainer
 class Chunk
          Defines a chunk.
 class Region
          Defines a region.
 class Section
          Defines a section.
 class World
          The main class for generating a Minecraft map.
 

Methods in net.morbz.minecraft.world with parameters of type IBlockContainer
 byte World.getSkyLightFromParent(IBlockContainer child, int childX, int childY, int childZ)
          Returns the sky light level of a block that is out of bounds of the child block container.
 byte Section.getSkyLightFromParent(IBlockContainer child, int x, int y, int z)
          Returns the sky light level of a block that is out of bounds of the child block container.
 byte Region.getSkyLightFromParent(IBlockContainer child, int childX, int childY, int childZ)
          Returns the sky light level of a block that is out of bounds of the child block container.
 byte IBlockContainer.getSkyLightFromParent(IBlockContainer child, int childX, int childY, int childZ)
          Returns the sky light level of a block that is out of bounds of the child block container.
 byte Chunk.getSkyLightFromParent(IBlockContainer child, int childX, int childY, int childZ)
          Returns the sky light level of a block that is out of bounds of the child block container.
 

Constructors in net.morbz.minecraft.world with parameters of type IBlockContainer
Chunk(IBlockContainer parent, int xPos, int zPos, DefaultLayers layers)
          Creates a new instance.
Region(IBlockContainer parent, int xPos, int zPos, DefaultLayers layers)
          Creates a new instance.
Section(IBlockContainer parent, int y)
          Creates a new instance.