blob: 38a399ed4b20375e5b121ea6eb4318da74d81c64 (
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
|
package at.hannibal2.skyhanni.config.features.misc;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class AreaNavigationConfig {
@Expose
@ConfigOption(name = "Area Path Finder", desc = "")
@Accordion
public AreaPathfinderConfig pathfinder = new AreaPathfinderConfig();
@Expose
@ConfigOption(name = "In World", desc = "Shows the area names in world")
@ConfigEditorBoolean
@FeatureToggle
public boolean inWorld = false;
@Expose
@ConfigOption(name = "Small Areas", desc = "Include small areas.")
@ConfigEditorBoolean
public boolean includeSmallAreas = false;
@Expose
@ConfigOption(name = "Title on Enter", desc = "Sends a titles on screen when entering an area.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enterTitle = false;
}
|