@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface Config
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
modid
The mod id that this configuration is associated with.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.String |
category
Root element category, defaults to "general", if this is an empty string then the root category is disabled.
|
java.lang.String |
name
A user friendly name for the config file,
the default will be modid
|
Config.Type |
type
The type this is, right now the only value is INSTANCE.
|
public abstract java.lang.String modid
public abstract java.lang.String name
public abstract Config.Type type