com.illtamer.infinite.bot.minecraft.expansion.automation.annotation.ConfigField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minecraft Show documentation
Show all versions of minecraft Show documentation
Infinite Bot for Minecraft
package com.illtamer.infinite.bot.minecraft.expansion.automation.annotation;
import java.lang.annotation.*;
/**
* 自动加载配置类字段注解
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ConfigField {
/**
* 字段坐标
* */
String ref() default "";
/**
* 缺省值
* */
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy