blob: 64ecd4a00148365e9c7159f07944cbad23f52905 (
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
|
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.ConfigEditorColour;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class HighlightPartyMembersConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Mark party members with a bright outline to better find them in the world.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(
name = "Outline Color",
desc = "The color to outline party members in."
)
@ConfigEditorColour
public String outlineColor = "0:245:85:255:85";
}
|