aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/Debug.java
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-09-08 11:53:51 +0200
committerLorenz <lo.scherf@gmail.com>2022-09-08 11:53:51 +0200
commitaacef90022346c4408d5e567a66c45d7ddb301b9 (patch)
treefeceb42c4478a752305aa3db29bbd1f15b0807b3 /src/main/java/at/hannibal2/skyhanni/config/features/Debug.java
parent60b2374520f353592aca58ef355cd177145ef8f1 (diff)
downloadSkyHanni-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/Debug.java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Debug.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Debug.java b/src/main/java/at/hannibal2/skyhanni/config/features/Debug.java
deleted file mode 100644
index c514a0d20..000000000
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Debug.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package at.hannibal2.skyhanni.config.features;
-
-
-import at.hannibal2.skyhanni.config.gui.core.config.Position;
-import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigEditorBoolean;
-import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigEditorButton;
-import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigOption;
-import com.google.gson.annotations.Expose;
-
-public class Debug {
-
- @Expose
- @ConfigOption(name = "Enable Test", desc = "Enable Test logic")
- @ConfigEditorBoolean
- public boolean enabled = false;
-
- @Expose
- @ConfigOption(name = "Test Location", desc = "")
- @ConfigEditorButton(runnableId = "testPos", buttonText = "Edit")
- public Position testPos = new Position(10, 10, false, true);
-} \ No newline at end of file