Guest User

BasicItem

a guest
Jul 11th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package com.matthew.swarmcraft.items;
  2.  
  3. import net.minecraft.creativetab.CreativeTabs;
  4. import net.minecraft.item.Item;
  5.  
  6. public class BasicItem extends Item {
  7.    
  8.     public BasicItem(String unlocalizedName) {
  9.         super();
  10.        
  11.         this.setUnlocalizedName(unlocalizedName);
  12.         this.setCreativeTab(CreativeTabs.MATERIALS);
  13.     }
  14.  
  15. }
Add Comment
Please, Sign In to add comment