package cn.liutils.cgui.gui.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Indicate that this field can't be edited by cgui editor even if it could. * @author WeAthFolD */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface EditIgnore { }