Files
FreedomNetworkSuite/Patchwork/src/main/java/me/totalfreedom/command/annotation/Permissive.java
Paul Reilly 6f400e505c Upgrades
2023-05-15 01:30:37 -05:00

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.";
}