blob: 3f149ffdb684405273abfe0c45ac7c57285c1a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package moe.nea.firmament.features.events.carnival
import moe.nea.firmament.util.data.Config
import moe.nea.firmament.util.data.ManagedConfig
object CarnivalFeatures {
@Config
object TConfig : ManagedConfig(identifier, Category.EVENTS) {
val enableBombSolver by toggle("bombs-solver") { true }
val displayTutorials by toggle("tutorials") { true }
}
val identifier: String
get() = "carnival"
}
|