summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/util/ICommand.java
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2021-10-20 20:14:01 -0400
committerTyler Murphy <tylermurphy534@gmail.com>2021-10-20 20:14:01 -0400
commitfc87556d8c0cc92b856ad682e4b3cbc964514eee (patch)
tree5596f89ec062d560a161722c8b87bec44aa288fd /src/main/java/net/tylermurphy/hideAndSeek/util/ICommand.java
parentglow fix, on join code change (diff)
downloadkenshinshideandseek-fc87556d8c0cc92b856ad682e4b3cbc964514eee.tar.gz
kenshinshideandseek-fc87556d8c0cc92b856ad682e4b3cbc964514eee.tar.bz2
kenshinshideandseek-fc87556d8c0cc92b856ad682e4b3cbc964514eee.zip
teams reference rewrite
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/util/ICommand.java')
-rw-r--r--src/main/java/net/tylermurphy/hideAndSeek/util/ICommand.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/util/ICommand.java b/src/main/java/net/tylermurphy/hideAndSeek/util/ICommand.java
deleted file mode 100644
index 373096f..0000000
--- a/src/main/java/net/tylermurphy/hideAndSeek/util/ICommand.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package net.tylermurphy.hideAndSeek.util;
-
-import org.bukkit.command.CommandSender;
-
-public interface ICommand {
-
- public void execute(CommandSender sender, String[] args);
-
- public String getLabel();
-
- public String getUsage();
-
- public String getDescription();
-
-}