20 lines
499 B
Java
20 lines
499 B
Java
![]() |
package WayofTime.alchemicalWizardry.common.items;
|
||
|
|
||
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
||
|
import cpw.mods.fml.relauncher.Side;
|
||
|
import cpw.mods.fml.relauncher.SideOnly;
|
||
|
|
||
|
public class DuskScribeTool extends ScribeTool
|
||
|
{
|
||
|
public DuskScribeTool()
|
||
|
{
|
||
|
super(5);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
@SideOnly(Side.CLIENT)
|
||
|
public void registerIcons(IIconRegister iconRegister)
|
||
|
{
|
||
|
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:DuskScribeTool");
|
||
|
}
|
||
|
}
|