package io.gitlab.jfronny.libjf.config.api.v1; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * An annotation for static methods in config classes which may be called when the user selects them in-game */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Preset { }