aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/command
diff options
context:
space:
mode:
authorDeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com>2022-06-05 17:43:23 +0200
committerGitHub <noreply@github.com>2022-06-05 17:43:23 +0200
commitab7256dff5d6d37488081ba7a01b36d3ee9ef563 (patch)
tree8207341e6c402848cdbe7b2f2297f5f975e0e083 /src/main/java/cc/polyfrost/oneconfig/command
parenta903cfc4d3f76cf3db24749b65156d126fa714e7 (diff)
downloadOneConfig-ab7256dff5d6d37488081ba7a01b36d3ee9ef563.tar.gz
OneConfig-ab7256dff5d6d37488081ba7a01b36d3ee9ef563.tar.bz2
OneConfig-ab7256dff5d6d37488081ba7a01b36d3ee9ef563.zip
refactor (#36)
* refactor * fix vig compat * fix nanovg thingy * e * finalize * gui utils package thingy
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/command')
-rw-r--r--src/main/java/cc/polyfrost/oneconfig/command/OneConfigCommand.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/command/OneConfigCommand.java b/src/main/java/cc/polyfrost/oneconfig/command/OneConfigCommand.java
deleted file mode 100644
index d58c5a6..0000000
--- a/src/main/java/cc/polyfrost/oneconfig/command/OneConfigCommand.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package cc.polyfrost.oneconfig.command;
-
-import cc.polyfrost.oneconfig.gui.HudGui;
-import cc.polyfrost.oneconfig.gui.OneConfigGui;
-import cc.polyfrost.oneconfig.utils.GuiUtils;
-import cc.polyfrost.oneconfig.utils.InputUtils;
-import cc.polyfrost.oneconfig.utils.commands.annotations.Command;
-import cc.polyfrost.oneconfig.utils.commands.annotations.Main;
-import cc.polyfrost.oneconfig.utils.commands.annotations.SubCommand;
-
-/**
- * The main OneConfig command.
- */
-@Command(value = "oneconfig", aliases = {"ocfg", "oneconfig"}, description = "Access the OneConfig GUI.")
-public class OneConfigCommand {
-
- @Main
- private static void main() {
- GuiUtils.displayScreen(OneConfigGui.create());
- }
-
- @SubCommand(value = "hud", description = "Open the OneConfig HUD config.")
- private static class HUDSubCommand {
- @Main
- private static void main() {
- GuiUtils.displayScreen(new HudGui());
- }
- }
-
- @SubCommand(value = "destroy", description = "Destroy the cached OneConfig GUI.")
- private static class DestroySubCommand {
- @Main
- private static void main() {
- OneConfigGui.instanceToRestore = null;
- InputUtils.blockClicks(false);
- }
- }
-} \ No newline at end of file