blob: 945a5f8a14ac544e408d690fe97d94c21ecc02c8 (
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
|
package at.hannibal2.skyhanni.config.features.mining;
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.ConfigOption;
public class MineshaftWaypointsConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Enable features related to the Glacite Mineshaft.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Entrance Location", desc = "Mark the location of the entrance with a waypoint.")
@ConfigEditorBoolean
public boolean entranceLocation = false;
@Expose
@ConfigOption(name = "Ladder Location", desc = "Mark the location of the ladders at the bottom of the entrance with a waypoint.")
@ConfigEditorBoolean
public boolean ladderLocation = false;
}
|