aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/dev/isxander/yacl/config/ConfigEntry.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/dev/isxander/yacl/config/ConfigEntry.java')
-rw-r--r--src/main/java/dev/isxander/yacl/config/ConfigEntry.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/dev/isxander/yacl/config/ConfigEntry.java b/src/main/java/dev/isxander/yacl/config/ConfigEntry.java
new file mode 100644
index 0000000..7f04c33
--- /dev/null
+++ b/src/main/java/dev/isxander/yacl/config/ConfigEntry.java
@@ -0,0 +1,11 @@
+package dev.isxander.yacl.config;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Retention(RetentionPolicy.RUNTIME)
+@Target(ElementType.FIELD)
+public @interface ConfigEntry {
+}