blob: 4c23afa12b7b98b94110cf992331cc3bc5dbe343 (
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
28
|
package at.hannibal2.skyhanni.config.features.itemability;
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 CrownOfAvariceConfig {
@Expose
@ConfigOption(name = "Counter",
desc = "Shows the current coins of your crown of avarice (if worn).")
@ConfigEditorBoolean
@FeatureToggle
public boolean enable = false;
@Expose
@ConfigOption(name = "Counter format",
desc = "Have the crown of avarice counter as short format instead of every digit.")
@ConfigEditorBoolean
public boolean shortFormat = true;
@Expose
@ConfigLink(owner = CrownOfAvariceConfig.class,field = "enable")
public Position position = new Position(20,20);
}
|