Implement new command system

This commit is contained in:
KingRainbow44
2022-04-18 18:24:08 -04:00
parent b2466693ae
commit ce51e9d6c3
8 changed files with 453 additions and 20 deletions

View File

@@ -5,9 +5,11 @@ import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Command {
String label() default "";
String[] aliases() default "";
int gmLevel() default 1;
String helpText() default "";
String usage() default "";
}