blob: 030e7295b08047c42bd1baa2e431d3ad2fd7320d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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 AreaWallsConfig {
@Expose
@ConfigOption(name = "Area Walls", desc = "Show walls between the main areas of the Crystal Hollows.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "In Nucleus", desc = "Also show the walls when inside the Nucleus.")
@ConfigEditorBoolean
public boolean nucleus = false;
}
|