Camellias_

Reference.java

Jul 10th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.89 KB | None | 0 0
  1. package camellias_.fallout;
  2.  
  3. public class Reference {
  4.    
  5.     public static final String MOD_ID = "camfm";
  6.     public static final String NAME = "Fallout";
  7.     public static final String VERSION = "0.1";
  8.     public static final String ACCEPTED_VERSIONS = "[1.11.2]";
  9.    
  10.     public static final String CLIENT_PROXY_CLASS = "camellias_.fallout.proxy.ClientProxy";
  11.     public static final String SERVER_PROXY_CLASS = "camellias_.fallout.proxy.ServerProxy";
  12.    
  13.     public static enum FalloutItems {
  14.         REVOLVER("revolver", "ItemRevolver");
  15.        
  16.         private String unlocalizedName;
  17.         private String registryName;
  18.        
  19.         FalloutItems(String unlocalizedName, String registryName){
  20.             this.unlocalizedName = unlocalizedName;
  21.             this.registryName = registryName;
  22.        
  23.         }
  24.        
  25.         public String getUnlocalizedName() {
  26.             return unlocalizedName;
  27.         }
  28.        
  29.         public String getRegistryName() {
  30.             return registryName;
  31.         }  
  32.     }
  33. }
Add Comment
Please, Sign In to add comment