2014-01-24 15:21:10 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.block;
|
|
|
|
|
2014-01-24 23:07:13 +00:00
|
|
|
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");
|
|
|
|
}
|
2014-01-24 23:07:13 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public TileEntity createNewTileEntity(World world)
|
|
|
|
{
|
|
|
|
return new TESpellEffectBlock();
|
|
|
|
}
|
2014-01-24 15:21:10 +00:00
|
|
|
}
|