aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java')
-rw-r--r--src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java b/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java
deleted file mode 100644
index 00b0d27..0000000
--- a/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package me.djtheredstoner.perspectivemod.commands;
-
-import gg.essential.api.EssentialAPI;
-import gg.essential.api.commands.Command;
-import gg.essential.api.commands.DefaultHandler;
-import me.djtheredstoner.perspectivemod.PerspectiveMod;
-
-public class PerspectiveModCommand extends Command {
-
- public PerspectiveModCommand(String name) {
- super(name);
- }
-
- @DefaultHandler
- public void handle() {
- EssentialAPI.getGuiUtil().openScreen(PerspectiveMod.instance.config.gui());
- }
-
-}