Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- package camellias_.fallout;
- public class Reference {
- public static final String MOD_ID = "camfm";
- public static final String NAME = "Fallout";
- public static final String VERSION = "0.1";
- public static final String ACCEPTED_VERSIONS = "[1.11.2]";
- public static final String CLIENT_PROXY_CLASS = "camellias_.fallout.proxy.ClientProxy";
- public static final String SERVER_PROXY_CLASS = "camellias_.fallout.proxy.ServerProxy";
- public static enum FalloutItems {
- REVOLVER("revolver", "ItemRevolver");
- private String unlocalizedName;
- private String registryName;
- FalloutItems(String unlocalizedName, String registryName){
- this.unlocalizedName = unlocalizedName;
- this.registryName = registryName;
- }
- public String getUnlocalizedName() {
- return unlocalizedName;
- }
- public String getRegistryName() {
- return registryName;
- }
- }
- }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.