Advertisement
JediNikola

Creative Tab location

Jun 22nd, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package YourPackageName;
  2.  
  3. import net.minecraft.item.Item;
  4. import cpw.mods.fml.relauncher.*;
  5. import net.minecraft.creativetab.CreativeTabs;
  6.  
  7.  
  8. public class ThisClassName extends Item {
  9. public ThisClassName(int par1) {
  10. super(par1); //Returns super constructor: par1 is ID
  11. setCreativeTab(CreativeTabs.tabMaterials);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement