Advertisement
Guest User

ALBOER References code

a guest
Jun 25th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. package com.TheTruNightmare.ALBOER;
  2.  
  3. public class Reference {
  4.  
  5. public static final String MOD_ID = "ttnalboer";
  6. public static final String NAME = "A Little Bit Of Everything Redone";
  7. public static final String VERSION = "0.1.0-Alpha";
  8. public static final String ACCEPTED_VERSIONS = "[1.11.2]";
  9.  
  10. public static final String CLIENT_PROXY_CLASS = "com.TheTruNightmare.ALBOER.proxy.ClientProxy";
  11. public static final String SERVER_PROXY_CLASS = "com.TheTruNightmare.ALBOER.proxy.ServerProxy";
  12.  
  13. public static enum ALBOERItems {
  14. RAWDRAGONSGEM("RawDragonsGem", "ItemRawDragonsGem"),
  15. DRAGONSGEM("DragonsGem", "ItemDragonsGem");
  16.  
  17. private String unlocalizedName;
  18. private String registryName;
  19.  
  20. ALBOERItems(String unlocalizedName, String registryName){
  21.  
  22. this.unlocalizedName = unlocalizedName;
  23. this.registryName = registryName;
  24. }
  25.  
  26. public String getUnlocalizedName() {
  27. return unlocalizedName;
  28. }
  29.  
  30. public String getRegistryName() {
  31. return registryName;
  32. }
  33.  
  34.  
  35. }
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement