Guest User

ModItems

a guest
Oct 14th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package passage.extrafurniture.item;
  2.  
  3. import net.minecraft.creativetab.CreativeTabs;
  4. import net.minecraft.item.Item;
  5.  
  6. public final class ModItems {
  7.  
  8. public static Item testItem;
  9.  
  10. public static final void init()
  11. {
  12. testItem = new Item().setUnlocalizedName("testItem").setCreativeTab(CreativeTabs.MISC);
  13.  
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment