tech reborn Manuel Item

This commit is contained in:
Gig 2015-04-17 20:12:58 +01:00
parent d7ae47e956
commit 168497db9b
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,23 @@
package techreborn.items;
import techreborn.client.TechRebornCreativeTab;
import techreborn.lib.ModInfo;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.item.Item;
public class ItemTechManuel extends Item{
public ItemTechManuel()
{
setCreativeTab(TechRebornCreativeTab.instance);
setUnlocalizedName("techreborn.manuel");
setMaxStackSize(1);
}
@Override
public void registerIcons(IIconRegister iconRegister)
{
itemIcon = iconRegister.registerIcon("techreborn:" + "tool/manuel");
}
}