blob: 723cf9b908c8c87abc4ebc6d9c685b827a2054aa (
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
|
package at.hannibal2.skyhanni.config.features.mining;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorKeybind;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import org.lwjgl.input.Keyboard;
public class GlaciteMineshaftConfig {
@Expose
@ConfigOption(name = "Mineshaft Waypoints", desc = "General waypoints inside the Mineshaft.")
@Accordion
public MineshaftWaypointsConfig mineshaftWaypoints = new MineshaftWaypointsConfig();
@Expose
@ConfigOption(name = "Corpse Locator", desc = "")
@Accordion
public CorpseLocatorConfig corpseLocator = new CorpseLocatorConfig();
@Expose
@ConfigOption(name = "Corpse Tracker", desc = "")
@Accordion
public CorpseTrackerConfig corpseTracker = new CorpseTrackerConfig();
@Expose
@ConfigOption(name = "Share Waypoint Location", desc = "Share the location of the nearest waypoint upon key press.\n" +
"§eYou can share the location even if it has already been shared!")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int shareWaypointLocation = Keyboard.KEY_NONE;
}
|