diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java new file mode 100644 index 000000000..2e1c5ea8f --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java @@ -0,0 +1,13 @@ +package at.hannibal2.skyhanni.config.features; + +import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigEditorBoolean; +import at.hannibal2.skyhanni.config.gui.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; +} |
