aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java
blob: ed1ea7f56304a370528f60927283fde55ee2c475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package at.hannibal2.skyhanni.config.features;

import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorBoolean;
import at.hannibal2.skyhanni.config.core.config.annotations.ConfigOption;
import com.google.gson.annotations.Expose;

public class CommandsFeatures {

    @Expose
    @ConfigOption(name = "Fandom Wiki", desc = "Using §ehypixel-skyblock.fandom.com §7instead of Hypixel wiki")
    @ConfigEditorBoolean
    public boolean useFandomWiki = false;
}