mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-14 21:34:52 +01:00
16 lines
411 B
Java
16 lines
411 B
Java
package emu.nebula;
|
|
|
|
public class GameConstants {
|
|
public static final int DATA_VERSION = 22;
|
|
public static final String VERSION = "1.0.0." + DATA_VERSION;
|
|
|
|
public static final String PROTO_BASE_TYPE_URL = "type.googleapis.com/proto.";
|
|
|
|
public static final int INTRO_GUIDE_ID = 1;
|
|
|
|
public static final int GOLD_ITEM_ID = 1;
|
|
|
|
public static final int MAX_FORMATIONS = 5;
|
|
|
|
}
|