mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 18:55:18 +00:00
15 lines
279 B
Java
15 lines
279 B
Java
package com.volmit.iris.util;
|
|
|
|
import static java.lang.annotation.ElementType.*;
|
|
import static java.lang.annotation.RetentionPolicy.*;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RUNTIME)
|
|
@Target(FIELD)
|
|
public @interface Instance
|
|
{
|
|
|
|
}
|