blob: b2faf0051826df3d5041d2f6ea88a344625a4ded (
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
|
package de.hysky.skyblocker.config.configs;
import dev.isxander.yacl3.config.v2.api.SerialEntry;
public class FarmingConfig {
@SerialEntry
public Garden garden = new Garden();
public static class Garden {
@SerialEntry
public FarmingHud farmingHud = new FarmingHud();
@SerialEntry
public boolean dicerTitlePrevent = true;
@SerialEntry
public boolean visitorHelper = true;
@SerialEntry
public boolean lockMouseTool = false;
@SerialEntry
public boolean lockMouseGroundOnly = false;
}
public static class FarmingHud {
@SerialEntry
public boolean enableHud = true;
@SerialEntry
public int x;
@SerialEntry
public int y;
}
}
|