blob: 77cb352f69ce66ee301019d258fdf5ba359073f6 (
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
|
package at.hannibal2.skyhanni.config.features.garden;
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;
import io.github.notenoughupdates.moulconfig.observer.Property;
public class DicerRngDropTrackerConfig {
@Expose
@ConfigOption(name = "Enable Tracker", desc = "Track RNG drops for Melon Dicer and Pumpkin Dicer.")
@ConfigEditorBoolean
@FeatureToggle
public boolean display = true;
@Expose
@ConfigOption(name = "Compact Format", desc = "Compact the Dicer RNG Drop Tracker Display.")
@ConfigEditorBoolean
@FeatureToggle
public Property<Boolean> compact = Property.of(false);
@Expose
@ConfigOption(name = "Hide Chat", desc = "Hide the chat message when dropping a RNG Dicer drop.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideChat = false;
@Expose
@ConfigLink(owner = DicerRngDropTrackerConfig.class, field = "display")
// TODO rename to "positon"
public Position pos = new Position(16, -232, false, true);
}
|