TFM-4.3-Reloaded/src/main/java/me/totalfreedom/totalfreedommod/commands/CommandParameters.java
2015-11-18 21:41:51 +01:00

15 lines
331 B
Java

package me.totalfreedom.totalfreedommod.commands;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface CommandParameters
{
String description();
String usage();
String aliases() default ""; // "alias1,alias2,alias3" - no spaces
}