equivalent-exchange-3/src/main/java/com/pahimar/ee3/block/BlockAlchemySquare.java

24 lines
478 B
Java
Raw Normal View History

package com.pahimar.ee3.block;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockAlchemySquare extends BlockContainerEE
{
public BlockAlchemySquare(int id)
{
super(id);
}
/**
* Returns a new instance of a block's tile entity class. Called on placing the block.
*
* @param world
*/
@Override
public TileEntity createNewTileEntity(World world)
{
return null;
}
}