blob: a95d884a46a75bc0063b0e7456c932e62216d334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package at.hannibal2.skyhanni.config.features.fishing;
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 ThunderSparkConfig {
@Expose
@ConfigOption(name = "Thunder Spark Highlight", desc = "Highlight Thunder Sparks after killing a Thunder.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlight = false;
@Expose
@ConfigOption(name = "Thunder Spark Color", desc = "Color of the Thunder Sparks.")
@ConfigEditorColour
public String color = "0:255:255:255:255";
}
|