package sorestpegasus.test_mod;
public class Reference {
public static final String MOD_ID = "kys";
public static final String NAME = "Keep Out";
public static final String VERSION = "0.2";
public static final String ACCEPTED_VERSIONS = "[1.9.4,1.10.2]";
public static final String CLIENT_PROXY_CLASS = "sorestpegasus.test_mod.proxy.ClientProxy";
public static final String SERVER_PROXY_CLASS = "sorestpegasus.test_mod.proxy.ServerProxy";
public static enum TestItems {
DOUGHNUT("doughnut", "ItemDoughnut"),
NACHOS("nachos", "ItemNachos"),
RED_DIAMOND("red_diamond", "ItemRedDiamond");
private String unlocalizedName;
private String registryName;
TestItems(String unlocalizedName, String registryName) {
this.unlocalizedName = unlocalizedName;
this.registryName = registryName;
}
public String getUnlocalizedName()
{
return unlocalizedName;
}
public String getRegistryName()
{
return registryName;
}
}
public static enum TestBlocks {
RED_DIAMOND_BLOCK("red_diamond_block", "BlockRedDiamond"),
RED_DIAMOND_ORE("red_diamond_ore", "BlockRedOre");
private String unlocalizedName;
private String registryName;
TestBlocks(String unlocalizedName, String registryName) {
this.unlocalizedName = unlocalizedName;
this.registryName = registryName;
}
public String getUnlocalizedName()
{
return unlocalizedName;
}
public String getRegistryName()
{
return registryName;
}
}
}
the reference class