Plex/src/main/java/me/totalfreedom/plex/command/impl/CommandPermissions.java

13 lines
327 B
Java
Raw Normal View History

2020-10-31 04:51:22 +00:00
package me.totalfreedom.plex.command.impl;
import me.totalfreedom.plex.rank.enums.Rank;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface CommandPermissions
{
Rank level() default Rank.IMPOSTOR;
RequiredCommandSource source();
}