22 lines
694 B
Java
22 lines
694 B
Java
/* */ package com.bernard.torch.init;
|
|
/* */
|
|
/* */ import com.bernard.torch.items.TorchAmulet;
|
|
/* */ import cpw.mods.fml.common.registry.GameRegistry;
|
|
/* */ import net.minecraft.creativetab.CreativeTabs;
|
|
/* */ import net.minecraft.item.Item;
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */ public class TorchItems
|
|
/* */ {
|
|
/* */ public static Item torchAmulet;
|
|
/* */
|
|
/* */ public static void init()
|
|
/* */ {
|
|
/* 16 */ torchAmulet = new TorchAmulet().setUnlocalizedName("torch_amulet").setTextureName("torch_mod:torch_amulet").setCreativeTab(CreativeTabs.tabTools);
|
|
/* 17 */ GameRegistry.registerItem(torchAmulet, "torch_amulet");
|
|
/* */ }
|
|
/* */ }
|
|
|
|
|