blob: 32940e6d5297a7e573f82a750d49a4cb5fa8964c (
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
|
package at.hannibal2.skyhanni.config.features.misc;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class QuickModMenuSwitchConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Add a mod list, allowing quick switching between different mod menus.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Inside Escape Menu", desc = "Show the mod list while inside the Escape menu.")
@ConfigEditorBoolean
public boolean insideEscapeMenu = true;
@Expose
@ConfigOption(name = "Inside Inventory", desc = "Show the mod list while inside the player inventory (no chest inventory).")
@ConfigEditorBoolean
public boolean insidePlayerInventory = false;
@Expose
@ConfigLink(owner = QuickModMenuSwitchConfig.class, field = "enabled")
public Position pos = new Position(-178, 143, false, true);
}
|