1
0
This commit is contained in:
Lee
2024-03-20 17:50:17 +00:00
parent d9a2fd16d0
commit 6d376a26f6
8 changed files with 38 additions and 5 deletions

View File

@ -1,6 +1,7 @@
package cc.fascinated.command;
import cc.fascinated.Aetheria;
import cc.fascinated.command.impl.HelpCommand;
import cc.fascinated.command.impl.TotalJoinsCommand;
import java.util.Objects;
@ -9,6 +10,7 @@ public class CommandManager {
public CommandManager() {
registerCommand(new TotalJoinsCommand());
registerCommand(new HelpCommand());
}
public static void registerCommand(Command command) {