001package net.minecraft.block;
002
003import net.minecraft.tileentity.TileEntity;
004import net.minecraft.world.World;
005
006public interface ITileEntityProvider
007{
008    /**
009     * Returns a new instance of a block's tile entity class. Called on placing the block.
010     */
011    TileEntity createNewTileEntity(World world);
012}