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

12 lines
310 B
Java
Raw Normal View History

2020-10-31 04:58:12 +00:00
package me.totalfreedom.plex.command;
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 "";
String usage() default "/<command>";
String aliases() default "";
}