blob: 41e026fcf35720011878655c841e078849496e1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package dev.isxander.yacl3.config.v2.api.autogen;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* An option factory that creates an instance
* of a {@link dev.isxander.yacl3.api.LabelOption}.
* <p>
* The backing field can be private and final and
* must be of type {@link net.minecraft.network.chat.Component}.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Label {
}
|