-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathModConfig.java
More file actions
30 lines (26 loc) · 999 Bytes
/
ModConfig.java
File metadata and controls
30 lines (26 loc) · 999 Bytes
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
package win.baruna.blockmeter;
import me.shedaniel.autoconfig.ConfigData;
import me.shedaniel.autoconfig.annotation.Config;
import me.shedaniel.autoconfig.annotation.ConfigEntry;
@Config(name = "blockmeter")
public class ModConfig implements ConfigData {
@ConfigEntry.Gui.Tooltip(count = 2)
public boolean minimalLabelSize = false;
@ConfigEntry.Gui.Tooltip(count = 2)
public boolean deleteBoxesOnDisable = true;
@ConfigEntry.Gui.Tooltip(count = 3)
public boolean sendBoxes = true;
public boolean showBoxesWhenDisabled = false;
@ConfigEntry.Gui.Excluded
public boolean backgroundForLabels = true;
@ConfigEntry.BoundedDiscrete(max=200, min = 7)
public int reach = 50;
@ConfigEntry.Gui.Excluded
public boolean incrementColor = true;
@ConfigEntry.Gui.Excluded
public boolean innerDiagonal = false;
@ConfigEntry.Gui.Excluded
public boolean showOtherUsersBoxes = false;
@ConfigEntry.Gui.Excluded
public int colorIndex = 0;
}