Advertisement
Guest User

ItemTest.java

a guest
Feb 26th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package testmodpackage;
  2.  
  3. import net.minecraft.creativetab.CreativeTabs;
  4. import net.minecraft.item.Item;
  5.  
  6. public final class ItemTest extends Item{
  7.    
  8.     public ItemTest(){
  9.         this.setUnlocalizedName("testitem_unlocalname");
  10.         this.setRegistryName("testitem_regname");
  11.         this.setCreativeTab(CreativeTabs.TOOLS);
  12.     }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement