blob: e033e7a520b259008585ee8eabc5c6ef53d79450 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
package at.hannibal2.skyhanni.config.features.crimsonisle;
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.ConfigEditorDropdown;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class SulphurSkitterBoxConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Render a box around the closest sulphur block.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Box Type", desc = "Choose the look of the box.")
@ConfigEditorDropdown
public BoxType boxType = BoxType.WIREFRAME;
public enum BoxType {
FULL("Full"),
WIREFRAME("Wireframe"),
;
private final String str;
BoxType(String str) {
this.str = str;
}
@Override
public String toString() {
return str;
}
}
@Expose
@ConfigOption(name = "Box Color", desc = "Choose the color of the box.")
@ConfigEditorColour
public String boxColor = "0:102:255:216:0";
@Expose
@ConfigOption(name = "Only With Rods", desc = "Render the box only when holding a lava fishing rod.")
@ConfigEditorBoolean
public boolean onlyWithRods = true;
}
|