Plex/src/main/java/dev/plex/command/annotation/CommandParameters.java

14 lines
311 B
Java
Raw Normal View History

2021-01-03 07:21:15 +00:00
package dev.plex.command.annotation;
2020-10-31 04:51:22 +00:00
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface CommandParameters
{
String description() default "";
2020-11-06 01:29:38 +00:00
2020-10-31 04:51:22 +00:00
String usage() default "/<command>";
2020-11-06 01:29:38 +00:00
2020-10-31 04:51:22 +00:00
String aliases() default "";
}