Advertisement
gottabadfeeling

Paper Mario Mod 1.8 - Items Tab Code

Apr 18th, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package com.gottabadfeeling.mod.papermario;
  2.  
  3. import com.gottabadfeeling.papermario.mod.init.PaperMarioItems;
  4.  
  5. import net.minecraft.creativetab.CreativeTabs;
  6. import net.minecraft.item.Item;
  7.  
  8. public class PaperMarioItemsTab extends CreativeTabs {
  9.    
  10.     public PaperMarioItemsTab(String label)
  11.     {
  12.         super(label);
  13.         this.setBackgroundImageName("paper_mario.png");
  14.     }
  15.    
  16.     @Override
  17.     public Item getTabIconItem()
  18.     {
  19.         return  PaperMarioItems.red_mushroom;
  20.     }
  21.    
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement