diff options
author | nea <romangraef@gmail.com> | 2022-09-10 03:48:03 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-09-10 03:48:03 +0200 |
commit | ec66c82198fe2d61d699d553c1254f08b43fcc65 (patch) | |
tree | b5d4efaf5d6d6699357c3afb1d6920d89d51b3b8 /src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt | |
parent | d9353ff54c20a08e4e078e0190fc1f364b08a2d1 (diff) | |
download | firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.tar.gz firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.tar.bz2 firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.zip |
Move Eventhandling around.
I still want to use fabric still "array backed" events, but these here are just a bit easier to use from kotlin.
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt b/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt new file mode 100644 index 0000000..1d3628e --- /dev/null +++ b/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt @@ -0,0 +1,16 @@ +package moe.nea.notenoughupdates.features + +interface NEUFeature { + val name: String + val identifier: String + val defaultEnabled: Boolean + get() = true + var isEnabled: Boolean + get() = FeatureManager.isEnabled(identifier) ?: defaultEnabled + set(value) { + FeatureManager.setEnabled(identifier, value) + } + + fun onLoad() + +} |