blob: 7bff63e95c8c1584c9f7582235d66c9adeae5c27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorBoolean;
import at.hannibal2.skyhanni.config.core.config.annotations.ConfigOption;
import com.google.gson.annotations.Expose;
public class MarkedPlayers {
@Expose
@ConfigOption(name = "Highlight in World", desc = "Highlight marked players in the world.")
@ConfigEditorBoolean
public boolean highlightInWorld = true;
@Expose
@ConfigOption(name = "Highlight in Chat", desc = "Highlight marked player names in chat.")
@ConfigEditorBoolean
public boolean highlightInChat = true;
@Expose
@ConfigOption(name = "Mark Own Name", desc = "Mark own player name.")
@ConfigEditorBoolean(runnableId = "markOwnPlayer")
public boolean markOwnName = false;
}
|