blob: b07514224324e4d232f2675b08caf139cd47520b (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
package at.hannibal2.skyhanni.config.features.skillprogress;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import io.github.notenoughupdates.moulconfig.observer.Property;
public class SkillOverflowConfig {
@Expose
@ConfigOption(name = "Display", desc = "Enable the overflow calculation in the progress display.")
@ConfigEditorBoolean
public Property<Boolean> enableInDisplay = Property.of(false);
@Expose
@ConfigOption(name = "All Skill Display", desc = "Enable the overflow calculation in the all skill progress display.")
@ConfigEditorBoolean
public Property<Boolean> enableInAllDisplay = Property.of(false);
@Expose
@ConfigOption(name = "ETA Display", desc = "Enable the overflow calculation in the ETA skill display.")
@ConfigEditorBoolean
public Property<Boolean> enableInEtaDisplay = Property.of(false);
@Expose
@ConfigOption(name = "Progress Bar", desc = "Enable the overflow calculation in the progress bar of the display.")
@ConfigEditorBoolean
public Property<Boolean> enableInProgressBar = Property.of(false);
@Expose
@ConfigOption(name = "Skill Menu Stack Size", desc = "Enable the overflow calculation when the 'Skill Level' Item Number is enabled.")
@ConfigEditorBoolean
public boolean enableInSkillMenuAsStackSize = false;
@Expose
@ConfigOption(name = "Skill Menu Tooltips", desc = "Enable the overflow calculation in the tooltip of items in skills menu.")
@ConfigEditorBoolean
public boolean enableInSkillMenuTooltip = false;
@Expose
@ConfigOption(name = "Chat", desc = "Enable the overflow level up message when you gain an overflow level.")
@ConfigEditorBoolean
public boolean enableInChat = false;
}
|