diff options
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 |
