mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 23:36:12 +00:00
14 lines
289 B
Java
14 lines
289 B
Java
package com.volmit.iris.util;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
import static java.lang.annotation.ElementType.FIELD;
|
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|
|
|
@Retention(RUNTIME)
|
|
@Target(FIELD)
|
|
public @interface Instance {
|
|
|
|
}
|