summaryrefslogtreecommitdiff
path: root/src/com/redstoner/annotations/Commands.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/redstoner/annotations/Commands.java')
-rw-r--r--src/com/redstoner/annotations/Commands.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/redstoner/annotations/Commands.java b/src/com/redstoner/annotations/Commands.java
index 1388de4..537bff0 100644
--- a/src/com/redstoner/annotations/Commands.java
+++ b/src/com/redstoner/annotations/Commands.java
@@ -1,11 +1,14 @@
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();