package com.harry9137.ct.block; import com.harry9137.ct.reference.names; import com.harry9137.ct.tileentity.TileEntityIncubator; import net.minecraft.block.ITileEntityProvider; import net.minecraft.block.material.Material; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; public class BlockIncubator extends BlockCT implements ITileEntityProvider { public BlockIncubator(){ super(Material.iron); this.setUnlocalizedName(names.blocks.BlockIncubator); } @Override public TileEntity createNewTileEntity(World world, int metadata) { return new TileEntityIncubator(); } }