2014-01-17 19:12:49 +00:00
|
|
|
package WayofTime.alchemicalWizardry;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
|
|
|
|
2014-01-17 21:43:13 +00:00
|
|
|
public class TestingBlock extends Block
|
|
|
|
{
|
2014-01-17 19:12:49 +00:00
|
|
|
public TestingBlock(int id, Material material)
|
|
|
|
{
|
|
|
|
super(id, material);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IconRegister iconRegister)
|
|
|
|
{
|
|
|
|
this.blockIcon = iconRegister.registerIcon("AlchemicalWizardry:Testing");
|
|
|
|
}
|
|
|
|
}
|