mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-07-01 04:26:42 +00:00
15 lines
310 B
Java
15 lines
310 B
Java
package me.StevenLawson.TotalFreedomMod.Commands;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface CommandPermissions
|
|
{
|
|
AdminLevel level();
|
|
|
|
SourceType source();
|
|
|
|
boolean blockHostConsole() default false;
|
|
}
|