mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-07-05 14:56:41 +00:00
15 lines
341 B
Java
15 lines
341 B
Java
package me.totalfreedom.command.annotation;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface Permissive
|
|
{
|
|
String perm();
|
|
|
|
boolean onlyPlayers() default false;
|
|
|
|
String noPerms() default "You do not have permission to use this command.";
|
|
}
|