blob: b64531e00079f29ee0a2bcfc16513e43dede9de1 (
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.dev;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorKeybind;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import org.lwjgl.input.Keyboard;
public class WaypointsConfig {
@Expose
@ConfigOption(name = "Save Hotkey", desc = "Saves block location to a temporarily parkour and copies everything to your clipboard.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int saveKey = Keyboard.KEY_NONE;
@Expose
@ConfigOption(name = "Delete Hotkey", desc = "Deletes the last saved location for when you make a mistake.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int deleteKey = Keyboard.KEY_NONE;
@Expose
@ConfigOption(name = "Show Platform Number", desc = "Show the index number over the platform for every parkour.")
@ConfigEditorBoolean
public boolean showPlatformNumber = false;
@Expose
@ConfigOption(name = "Show Outside SkyBlock", desc = "Make parkour waypoints outside of SkyBlock too.")
@ConfigEditorBoolean
public boolean parkourOutsideSB = false;
}
|