mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
636 B
Java
18 lines
636 B
Java
package com.hbm.lib;
|
|
|
|
public class RefStrings {
|
|
public static final String MODID = "hbm";
|
|
public static final String NAME = "Hbm's Nuclear Tech Mod";
|
|
public static final String VERSION = "1.0.27 BETA (Pistachio Sherbet)";
|
|
//HBM's Beta Naming Convention:
|
|
//V T (X-Y-Z)
|
|
//V -> next release version
|
|
//T -> build type
|
|
//X -> halogene (or noble gas if we're out of halogenes)
|
|
//Y -> some word that sounds cool
|
|
//Z -> build number
|
|
//Example: 1.0.25 BETA (Astatine-Lyra-X01)
|
|
public static final String CLIENTSIDE = "com.hbm.main.ClientProxy";
|
|
public static final String SERVERSIDE = "com.hbm.main.ServerProxy";
|
|
}
|