Plex/src/main/java/me/totalfreedom/plex/command/annotation/CommandParameters.java

14 lines
323 B
Java

package me.totalfreedom.plex.command.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface CommandParameters
{
String description() default "";
String usage() default "/<command>";
String aliases() default "";
}