diff options
| author | ilotterytea <iltsu@alright.party> | 2024-06-08 16:30:25 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-06-09 19:27:32 +0500 |
| commit | 604832dddef852a0a874b9dfbf3540a8a56736c0 (patch) | |
| tree | 07604a0be9258f2c7568ad64d9dc0c7160b227f6 /core/src/kz/ilotterytea/maxon/MaxonConstants.java | |
| parent | dc99bd738b1a4b38112f767c3253724d0ff0587c (diff) | |
feat/upd: new savegame loader + updated constructors
Diffstat (limited to 'core/src/kz/ilotterytea/maxon/MaxonConstants.java')
| -rw-r--r-- | core/src/kz/ilotterytea/maxon/MaxonConstants.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/src/kz/ilotterytea/maxon/MaxonConstants.java b/core/src/kz/ilotterytea/maxon/MaxonConstants.java index 08df03c..298e6d8 100644 --- a/core/src/kz/ilotterytea/maxon/MaxonConstants.java +++ b/core/src/kz/ilotterytea/maxon/MaxonConstants.java @@ -9,9 +9,11 @@ import java.text.SimpleDateFormat; public class MaxonConstants { public static final String GAME_NAME = "Maxon Petting Simulator"; + public static final String GAME_APP_ID = "maxon"; 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_MAIN_DEVELOPER = "ilotterytea"; + public static final String[][] GAME_DEVELOPERS = { {"ilotterytea", "https://ilotterytea.kz"}, {"greddyss", "https://twitch.tv/greddyss"}, @@ -21,7 +23,7 @@ public class MaxonConstants { {"gvardovskiy", "https://twitch.tv/gvardovskiy"} }; - public static final String GAME_MAIN_FOLDER = OsUtils.getUserDataDirectory(".Maxoning"); + public static final String GAME_MAIN_FOLDER = OsUtils.getUserDataDirectory(GAME_MAIN_DEVELOPER + "/" + GAME_APP_ID); public static final String GAME_SCREENSHOT_FOLDER = GAME_MAIN_FOLDER + "/screenshots"; public static final String GAME_SAVEGAME_FOLDER = GAME_MAIN_FOLDER + "/savegames"; |
