27 lines
749 B
Java
27 lines
749 B
Java
package com.seibel.lod.util;
|
|
|
|
/**
|
|
* This holds meta information about the mod.
|
|
*
|
|
* @author James Seibel
|
|
* @version 04-16-2020
|
|
*/
|
|
public class Reference
|
|
{
|
|
/** the mod's identifier */
|
|
public static final String MOD_ID = "lod";
|
|
/** the mod's name */
|
|
public static final String NAME = "LOD Mod";
|
|
/** the mod's version */
|
|
public static final String VERSION = "1.0";
|
|
/** the version of minecraft this mod is built for */
|
|
public static final String ACCEPTED_VERSIONS = "[1.16.4]";
|
|
|
|
/** where the client proxy class is */
|
|
public static final String CLIENT_PROXY_CLASS = "com.backsun.lod.proxy.ClientProxy";
|
|
/** where the common proxy class is*/
|
|
public static final String COMMON_PROXY_CLASS = "com.backsun.lod.proxy.CommonProxy";
|
|
|
|
|
|
}
|