aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/features/events/carnival/CarnivalFeatures.kt
blob: 1e6d97ac61911d72f9130af4de31d82f5d8d85e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package moe.nea.firmament.features.events.carnival

import moe.nea.firmament.features.FirmamentFeature
import moe.nea.firmament.gui.config.ManagedConfig

object CarnivalFeatures : FirmamentFeature {
    object TConfig : ManagedConfig(identifier) {
        val enableBombSolver by toggle("bombs-solver") { true }
        val displayTutorials by toggle("tutorials") { true }
    }

    override val config: ManagedConfig?
        get() = TConfig
    override val identifier: String
        get() = "carnival"
}