blob: 5ff82304fef571f69fcd9a625707b18717a3c717 (
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.misc;
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 PetCandyDisplayConfig {
@Expose
@ConfigOption(name = "Pet Candy Used", desc = "Show the number of Pet Candy used on a pet.")
@ConfigEditorBoolean
@FeatureToggle
public boolean showCandy = true;
@Expose
@ConfigOption(name = "Hide On Maxed", desc = "Hide the candy count on pets that are max level.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideOnMaxed = false;
}
|