BloodMagic/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSpellEffect.java

22 lines
481 B
Java
Raw Normal View History

2014-01-24 15:21:10 +00:00
package WayofTime.alchemicalWizardry.common.block;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.tileEntity.TESpellEffectBlock;
2014-01-24 15:21:10 +00:00
public class BlockSpellEffect extends BlockOrientable
{
public BlockSpellEffect(int id)
{
super(id);
setUnlocalizedName("blockSpellEffect");
}
@Override
public TileEntity createNewTileEntity(World world)
{
return new TESpellEffectBlock();
}
2014-01-24 15:21:10 +00:00
}