Guest User

ItemClass

a guest
Nov 5th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. package com.da.items;
  2.  
  3. import net.minecraft.creativetab.CreativeTabs;
  4. import net.minecraft.item.Item;
  5.  
  6. public class divineCore extends Item {
  7.  
  8.     public divineCore() {
  9.         this.setUnlocalizedName("DivineCore");
  10.         this.setRegistryName("divineCore");
  11.         this.setCreativeTab(CreativeTabs.MISC);
  12.     }
  13.    
  14. }
Add Comment
Please, Sign In to add comment