summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/stranded/StrandedConfig.java
blob: 77de9ce980b90d6b62fa18f15fec9519fc4a1972 (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.stranded;

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 StrandedConfig {
    @Expose
    @ConfigOption(name = "Highlight Placeable NPCs", desc = "Highlight NPCs that can be placed, but aren't, in the NPC menu.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean highlightPlaceableNpcs = false;

    @Expose
    @ConfigOption(name = "In Water Display", desc = "Display if the player is in water.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean inWaterDisplay = false;

    @Expose
    @ConfigLink(owner = StrandedConfig.class, field = "inWaterDisplay")
    public Position inWaterPosition = new Position(20, 20);
}