-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af9ea97
commit 84864dd
Showing
15 changed files
with
111 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
RemixedDungeon/src/main/java/com/nyrds/platform/storage/CommonPrefs.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.nyrds.platform.storage; | ||
|
||
public class CommonPrefs { | ||
public static final String KEY_IMMERSIVE = "immersive"; | ||
public static final String KEY_MUSIC = "music"; | ||
public static final String KEY_SOUND_FX = "soundfx"; | ||
public static final String KEY_ZOOM = "zoom"; | ||
public static final String KEY_LAST_CLASS = "last_class"; | ||
public static final String KEY_DONATED = "donated"; | ||
public static final String KEY_INTRO = "intro"; | ||
public static final String KEY_BRIGHTNESS = "brightness"; | ||
public static final String KEY_LOCALE = "locale"; | ||
public static final String KEY_QUICKSLOTS = "quickslots"; | ||
public static final String KEY_VERSION = "version"; | ||
public static final String KEY_FONT_SCALE = "font_scale"; | ||
public static final String KEY_CLASSIC_FONT = "classic_font"; | ||
public static final String KEY_PREMIUM_SETTINGS = "premium_settings"; | ||
public static final String KEY_REALTIME = "realtime"; | ||
public static final String KEY_ACTIVE_MOD = "active_mod"; | ||
public static final String KEY_COLLECT_STATS = "collect_stats"; | ||
public static final String KEY_MOVE_TIMEOUT = "move_timeout"; | ||
public static final String KEY_USE_PLAY_GAMES = "use_play_games"; | ||
public static final String KEY_UI_ZOOM = "ui_zoom"; | ||
public static final String KEY_VERSION_STRING = "version_string"; | ||
public static final String KEY_TOOL_STYLE = "tool_style"; | ||
public static final String KEY_HANDEDNESS = "handedness"; | ||
public static final String KEY_USE_ISOMETRIC_TILES = "use_isometric_tiles"; | ||
public static final String KEY_TILES_QUESTION_ASKED = "tiles_question_asked"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.