Advertisement
TastyCake-Minecraft

ItemObsidianIngot.java

Oct 24th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package com.tastycake.lebigboss.items;
  2.  
  3. import com.tastycake.lebigboss.Reference;
  4. import net.minecraft.item.Item;
  5. import net.minecraft.util.ResourceLocation;
  6.  
  7. public class ItemObsidianIngot extends Item
  8. {
  9. public ItemObsidianIngot(String unloalizedName, String registryName)
  10. {
  11. this.setUnlocalizedName(unloalizedName);
  12. this.setRegistryName(new ResourceLocation(Reference.MODID, registryName));
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement