mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
14 lines
311 B
Java
14 lines
311 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 MaxNumber {
|
|
double value();
|
|
}
|