16 lines
365 B
Java
16 lines
365 B
Java
package com.redstoner.annotations;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
import com.redstoner.misc.CommandHolderType;
|
|
|
|
@Target(ElementType.TYPE)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface Commands
|
|
{
|
|
CommandHolderType value();
|
|
}
|