blob: f189239533229154fc7092f4687ad598c5987fc2 (
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
|
package at.hannibal2.skyhanni.config.features.misc;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class GlowingDroppedItemsConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Draw a glowing outline around all dropped items on the ground.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Highlight Showcase Items", desc = "Draw a glowing outline around showcase items.")
@ConfigEditorBoolean
public boolean highlightShowcase = false;
@Expose
@ConfigOption(name = "Highlight Fishing Bait", desc = "Draw a glowing outline around fishing bait.")
@ConfigEditorBoolean
public boolean highlightFishingBait = false;
}
|