2014-01-17 19:12:49 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.items;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2014-01-17 21:05:38 +00:00
|
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
2014-01-17 19:12:49 +00:00
|
|
|
|
2014-01-17 21:43:13 +00:00
|
|
|
public class DuskScribeTool extends ScribeTool
|
|
|
|
{
|
2014-01-17 19:12:49 +00:00
|
|
|
public DuskScribeTool(int id)
|
|
|
|
{
|
|
|
|
super(id, 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IconRegister iconRegister)
|
|
|
|
{
|
|
|
|
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:DuskScribeTool");
|
|
|
|
}
|
|
|
|
}
|