aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/features/FirmamentFeature.kt
blob: 2cfc4fdee7ecd3d896c88e3b4acfcd1eaf40e5cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package moe.nea.firmament.features

import moe.nea.firmament.events.subscription.SubscriptionOwner
import moe.nea.firmament.gui.config.ManagedConfig

// TODO: remove this entire feature system and revamp config
interface FirmamentFeature : SubscriptionOwner {
    val identifier: String
    val defaultEnabled: Boolean
        get() = true
    var isEnabled: Boolean
        get() = FeatureManager.isEnabled(identifier) ?: defaultEnabled
        set(value) {
            FeatureManager.setEnabled(identifier, value)
        }
    override val delegateFeature: FirmamentFeature
        get() = this
    val config: ManagedConfig? get() = null
    fun onLoad() {}

}