23 lines
610 B
Java
23 lines
610 B
Java
package WayofTime.bloodmagic.block;
|
|
|
|
import WayofTime.bloodmagic.BloodMagic;
|
|
import net.minecraft.block.BlockContainer;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
public class BlockAltar extends BlockContainer {
|
|
|
|
public BlockAltar() {
|
|
super(Material.rock);
|
|
|
|
setUnlocalizedName(BloodMagic.MODID + ".altar");
|
|
setCreativeTab(BloodMagic.tabBloodMagic);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int meta) {
|
|
// return new TileAltar();
|
|
return null;
|
|
}
|
|
}
|