From b79e61949903e365362c17338acfb8b09d84f54f Mon Sep 17 00:00:00 2001 From: Lorenz Date: Mon, 22 Aug 2022 04:18:51 +0200 Subject: added real time display --- src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index 51c97f995..50e99729c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -37,4 +37,14 @@ public class Misc { @ConfigOption(name = "Config Button", desc = "Add a button to the pause menu to configure SkyHanni.") @ConfigEditorBoolean public boolean configButtonOnPause = true; + + @Expose + @ConfigOption(name = "Real Time", desc = "Show the real time. Useful while playing in full screen mode") + @ConfigEditorBoolean + public boolean realTime = false; + + @Expose + @ConfigOption(name = "Ashfang Freeze Position", desc = "") + @ConfigEditorButton(runnableId = "realTime", buttonText = "Edit") + public Position realTimePos = new Position(10, 10, false, true); } \ No newline at end of file -- cgit