Files
FreedomNetworkSuite/Patchwork/src/main/java/me/totalfreedom/command/annotation/Info.java
Paul Reilly 6f400e505c Upgrades
2023-05-15 01:30:37 -05:00

17 lines
368 B
Java

package me.totalfreedom.command.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Info
{
String name();
String description() default "This is the default command description.";
String usage() default "/<command>";
String[] aliases() default {};
}