blob: 7e2956cf6e221a97b490552efe3eafba60099324 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package at.hannibal2.skyhanni.config.features.mining;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class KingTalismanConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Show kings you have not talked to yet, and when the next missing king will appear.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Outside Mines", desc = "Show the display even while outside the Dwarven Mines.")
@ConfigEditorBoolean
@FeatureToggle
public boolean outsideMines = false;
@Expose
@ConfigLink(owner = KingTalismanConfig.class, field = "enabled")
public Position position = new Position(-400, 220, false, true);
}
|