diff options
| author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-16 00:35:46 +0200 |
|---|---|---|
| committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-16 00:35:46 +0200 |
| commit | df7c9dbe7c17df14ed5d9b810cd0144a8947c928 (patch) | |
| tree | 732909c83bdf94cfbce38c15ea2cb40fb1d0d74a /src/main/java/at/hannibal2/skyhanni/config/features/Debug.java | |
| parent | 2c15e17673faf5cf9fbc1279d6d805983cf9e52c (diff) | |
| download | SkyHanni-df7c9dbe7c17df14ed5d9b810cd0144a8947c928.tar.gz SkyHanni-df7c9dbe7c17df14ed5d9b810cd0144a8947c928.tar.bz2 SkyHanni-df7c9dbe7c17df14ed5d9b810cd0144a8947c928.zip | |
moved feature groups into own classes
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.java | 21 |
1 files changed, 21 insertions, 0 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 new file mode 100644 index 000000000..dca3ad805 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Debug.java @@ -0,0 +1,21 @@ +package at.hannibal2.skyhanni.config.features; + + +import at.hannibal2.skyhanni.config.core.config.Position; +import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorBoolean; +import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorButton; +import at.hannibal2.skyhanni.config.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 |
