summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/annotations/Commands.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/redstoner/annotations/Commands.java')
-rw-r--r--src/main/java/com/redstoner/annotations/Commands.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/com/redstoner/annotations/Commands.java b/src/main/java/com/redstoner/annotations/Commands.java
new file mode 100644
index 0000000..537bff0
--- /dev/null
+++ b/src/main/java/com/redstoner/annotations/Commands.java
@@ -0,0 +1,15 @@
+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();
+}