diff options
| author | Lorenz <lo.scherf@gmail.com> | 2022-09-08 11:53:51 +0200 |
|---|---|---|
| committer | Lorenz <lo.scherf@gmail.com> | 2022-09-08 11:53:51 +0200 |
| commit | aacef90022346c4408d5e567a66c45d7ddb301b9 (patch) | |
| tree | feceb42c4478a752305aa3db29bbd1f15b0807b3 /src/main/java/at/hannibal2/skyhanni/config/features/DevData.java | |
| parent | 60b2374520f353592aca58ef355cd177145ef8f1 (diff) | |
| download | SkyHanni-aacef90022346c4408d5e567a66c45d7ddb301b9.tar.gz SkyHanni-aacef90022346c4408d5e567a66c45d7ddb301b9.tar.bz2 SkyHanni-aacef90022346c4408d5e567a66c45d7ddb301b9.zip | |
moved api and debug into dev config
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/DevData.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DevData.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java b/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java new file mode 100644 index 000000000..5e66e9e8f --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java @@ -0,0 +1,30 @@ +package at.hannibal2.skyhanni.config.features; + +import at.hannibal2.skyhanni.config.gui.core.config.Position; +import at.hannibal2.skyhanni.config.gui.core.config.annotations.*; +import com.google.gson.annotations.Expose; + +public class DevData { + + @Expose + @ConfigOption(name = "Repo Auto Update", desc = "Update the repository on every startup.") + @ConfigEditorBoolean + public boolean repoAutoUpdate = true; + + @Expose + @ConfigOption(name = "Debug", desc = "") + @ConfigEditorAccordion(id = 0) + public boolean debugDO_NOT_USE = false; + + @Expose + @ConfigOption(name = "Enable Debug", desc = "Enable Test logic") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean debugEnabled = false; + + @Expose + @ConfigOption(name = "Debug Location", desc = "") + @ConfigEditorButton(runnableId = "debugPos", buttonText = "Edit") + @ConfigAccordionId(id = 0) + public Position debugPos = new Position(10, 10, false, true); +} |
