Advertisement
Guest User

Reference.java

a guest
Dec 25th, 2017
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. package com.erose524.sams;
  2.  
  3. public class Reference {
  4.  
  5. public static final String MOD_ID = "esm";
  6. public static final String NAME = "SAMS";
  7. public static final String VERSION = "1.0";
  8. public static final String ACCEPTED_VERSIONS = "[1.12.2]";
  9.  
  10. public static final String CLIENT_PROXY_CLASS = "com.erose524.sams.proxy.ClientProxy";
  11. public static final String SERVER_PROXY_CLASS = "com.erose524.sams.proxy.ServerProxy";
  12.  
  13. public static enum SamsItems {
  14. SUPERGLUE("superglue", "itemsuperglue");
  15.  
  16. private String unlocalizedName;
  17. private String registryName;
  18.  
  19. SamsItems(String unlocalizedName, String registryName) {
  20. this.unlocalizedName = unlocalizedName;
  21. this.registryName = registryName;
  22. }
  23.  
  24. public String getUnlocalizedName() {
  25. return unlocalizedName;
  26. }
  27. public String getRegistryName() {
  28. return registryName;
  29. }
  30. }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement