package cc.polyfrost.oneconfig.config.migration;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
{@code public @interface VigilanceName}
* This interface is used to specify a previous name for an element.
* For example, if you changed the name of a variable when you migrated/updated your mod to use OneConfig,
* you can use this annotation to specify the previous name so that the Migrator can grab it.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface VigilanceName {
String name();
String category();
String subcategory();
}