summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/minion/LastClickedMinionConfig.java
blob: 73bd44d4728133fad954f3de9e1fb54dc0ebaf9a (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
package at.hannibal2.skyhanni.config.features.minion;

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.ConfigEditorColour;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;

public class LastClickedMinionConfig {
    @Expose
    @ConfigOption(name = "Last Minion Display", desc = "Mark the location of the last clicked minion, even through walls.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean display = false;

    @Expose
    @ConfigOption(
        name = "Last Minion Color",
        desc = "The color in which the last minion should be displayed."
    )
    @ConfigEditorColour
    public String color = "0:245:85:255:85";

    @Expose
    @ConfigOption(
        name = "Last Minion Time",
        desc = "Time in seconds how long the last minion should be displayed."
    )
    @ConfigEditorSlider(
        minValue = 3,
        maxValue = 120,
        minStep = 1
    )
    public int time = 20;
}