unfinished commit, may be broken

Signed-off-by: deepCurse <leverplays@gmail.com>
This commit is contained in:
lever1209 2021-12-06 15:26:12 -04:00
commit 22837cf438
No known key found for this signature in database
GPG key ID: EEBCBB60C9DFC782
10 changed files with 74 additions and 71 deletions

View file

@ -30,7 +30,7 @@ public interface CommandInterface { // TODO rewrite to implement type args?
public abstract HelpPage getHelpPage();
public enum HelpPage {
General, DEV, EGG, Moderation, Fun, Info
General, Moderation, Fun, Info, Extra, TESTING, DEV, EGG
}
public default String getHelp() {
@ -63,8 +63,7 @@ public interface CommandInterface { // TODO rewrite to implement type args?
runDualCommand(new CommandBlob(blob), argumentMap);
}
public void runDualCommand(CommandBlob blob, HashMap<String, Argument> argumentMap)
throws Exception;
public void runDualCommand(CommandBlob blob, HashMap<String, Argument> argumentMap) throws Exception;
}