summaryrefslogtreecommitdiff
path: root/core/src/kz/ilotterytea/maxon/MaxonConstants.java
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-06-01 00:51:20 +0500
committerilotterytea <iltsu@alright.party>2024-06-01 00:51:20 +0500
commite49f8b310d6032c99406baf04b5ec3eba0fd111f (patch)
tree5120a1fbbf923da5ee8bc8561ed1545855aa5547 /core/src/kz/ilotterytea/maxon/MaxonConstants.java
parent10e9df6190ddc3f9c8dd7c86482449bec4651e0c (diff)
upd: moved the whole project under kz.ilotterytea.maxon name
Diffstat (limited to 'core/src/kz/ilotterytea/maxon/MaxonConstants.java')
-rw-r--r--core/src/kz/ilotterytea/maxon/MaxonConstants.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/core/src/kz/ilotterytea/maxon/MaxonConstants.java b/core/src/kz/ilotterytea/maxon/MaxonConstants.java
new file mode 100644
index 0000000..08df03c
--- /dev/null
+++ b/core/src/kz/ilotterytea/maxon/MaxonConstants.java
@@ -0,0 +1,37 @@
+package kz.ilotterytea.maxon;
+
+import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.files.FileHandle;
+import kz.ilotterytea.maxon.utils.OsUtils;
+
+import java.text.DecimalFormat;
+import java.text.SimpleDateFormat;
+
+public class MaxonConstants {
+ public static final String GAME_NAME = "Maxon Petting Simulator";
+ public static final String GAME_VERSION = "Alpha 1.2";
+ public static final String GAME_GHTAG = "alpha-1.2";
+ public static final String GAME_PUBLISHER = "iLotterytea";
+ public static final String[][] GAME_DEVELOPERS = {
+ {"ilotterytea", "https://ilotterytea.kz"},
+ {"greddyss", "https://twitch.tv/greddyss"},
+ {"enotegg", "https://twitch.tv/enotegg"},
+ {"namesake", "https://twitter.com/nameisnamesake"},
+ {"saopin", "https://twitch.tv/saopin_"},
+ {"gvardovskiy", "https://twitch.tv/gvardovskiy"}
+ };
+
+ public static final String GAME_MAIN_FOLDER = OsUtils.getUserDataDirectory(".Maxoning");
+ public static final String GAME_SCREENSHOT_FOLDER = GAME_MAIN_FOLDER + "/screenshots";
+ public static final String GAME_SAVEGAME_FOLDER = GAME_MAIN_FOLDER + "/savegames";
+
+ public static final FileHandle FILE_EN_US = Gdx.files.internal("i18n/en_us.json");
+ public static final FileHandle FILE_RU_RU = Gdx.files.internal("i18n/ru_ru.json");
+
+ public static final DecimalFormat DECIMAL_FORMAT = new DecimalFormat("###,###.##");
+ public static final DecimalFormat DECIMAL_FORMAT2 = new DecimalFormat("###,###");
+ @SuppressWarnings("SimpleDateFormat")
+ public static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("dd/M/yyyy hh:mm:ss");
+ public static final long startTime = System.currentTimeMillis();
+
+}