Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.rasdek.vape;
- public class Reference {
- public static final String MOD_ID = "rvm";
- public static final String NAME = "Vape Mod";
- public static final String VERSION = "1.0";
- public static final String ACCEPTED_VERSIONS = "[1.11.2]";
- public static final String CLIENT_PROXY_CLASS = "com.rasdek.vape.proxy.ClientProxy";
- public static final String SERVER_PROXY_CLASS = "com.rasdek.vape.proxy.ServerProxy";
- public static enum VapeItems {
- VAPESTICK("vapestick", "ItemVapeStick");
- private String unlocalizedName;
- private String registryName;
- VapeItems(String unlocalizedName, String registryName) {
- this.unlocalizedName = unlocalizedName;
- this.registryName = registryName;
- }
- public String getUnlocalizedName() {
- return unlocalizedName;
- }
- public String getRegistryName() {
- return registryName;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement