blob: da95fc53276ae22634dd6d5f494c336d709eea05 (
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
|
package at.hannibal2.skyhanni.config.features.slayer;
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 RngMeterDisplayConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Display amount of bosses needed until next RNG meter drop.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@Expose
@ConfigOption(name = "Warn Empty", desc = "Warn when no item is set in the RNG Meter.")
@ConfigEditorBoolean
public boolean warnEmpty = false;
@Expose
@ConfigOption(name = "Hide Chat", desc = "Hide the RNG meter message from chat if current item is selected.")
@ConfigEditorBoolean
public boolean hideChat = true;
@Expose
@ConfigLink(owner = RngMeterDisplayConfig.class, field = "enabled")
public Position pos = new Position(410, 110, false, true);
}
|