Advertisement
Guest User

ModItems

a guest
Apr 9th, 2015
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package com.github.enrzhy.AdvancedGeology.init;
  2.  
  3. import com.github.enrzhy.AdvancedGeology.help.RegisterHelper;
  4.  
  5. import com.github.enrzhy.AdvancedGeology.items.AdvancedGeologyItem;
  6.  
  7. import net.minecraft.item.Item;
  8.  
  9. public class ModItems
  10. {
  11. public static Item fossil = new AdvancedGeologyItem().setUnlocalizedName("fossil");
  12.  
  13. public static void init()
  14. {
  15. RegisterHelper.registerItem(fossil);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement