summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-09-02 22:17:09 +0600
committerilotterytea <iltsu@alright.party>2022-09-02 22:17:09 +0600
commit2710ede841dd3833974fbfd37e6aa232de15f071 (patch)
tree0e9199d374147697eed2f402dc97394c386afe5b /core
parent8d759d65b1d83fcd66e20af6b8f0ce87cd18614d (diff)
Game data paths
Diffstat (limited to 'core')
-rw-r--r--core/src/com/ilotterytea/maxoning/MaxonConstants.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/com/ilotterytea/maxoning/MaxonConstants.java b/core/src/com/ilotterytea/maxoning/MaxonConstants.java
index 2d42d86..2e73138 100644
--- a/core/src/com/ilotterytea/maxoning/MaxonConstants.java
+++ b/core/src/com/ilotterytea/maxoning/MaxonConstants.java
@@ -1,7 +1,13 @@
package com.ilotterytea.maxoning;
+import com.ilotterytea.maxoning.utils.OsUtils;
+
public class MaxonConstants {
public static final String GAME_NAME = "Maxon Petting Simulator";
public static final String GAME_VERSION = "Alpha 1.0.1";
public static final String GAME_PUBLISHER = "iLotterytea";
+
+ 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";
}