Guest User

Untitled

a guest
Feb 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public class mod_mymod extends BaseMod {
  4. public static final Item emeraldGem = new Item(2000).setItemName("EmeraldGem");
  5. public mod_mymod() {
  6. emeraldGem.iconIndex = ModLoader.addOverride("/gui/items.png", "/mymod/EmeraldGem.png");
  7. }
  8. public String Version() {
  9. return "1.8.1";
  10. }
  11. }
Add Comment
Please, Sign In to add comment