9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 20:19:06 +00:00
This commit is contained in:
Dan Macbook
2020-08-13 10:45:59 -04:00
parent 991aaa8677
commit 8586ec67b6
13 changed files with 208 additions and 76 deletions

View File

@@ -0,0 +1,13 @@
package com.volmit.iris.util;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(RUNTIME)
@Target({ FIELD })
public @interface DependsOn {
String[] value();
}