aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-05-03 20:02:10 +0200
committernea <nea@nea.moe>2023-05-03 20:02:10 +0200
commite9f9ad1ac087066c1e597054fafc55e95f2ccb1e (patch)
tree2e17d890a4bf661e83ee262245c8af3c4222eb2b /src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt
parentf844feba1b874a946f020574fee06c5926d042f8 (diff)
downloadfirmament-e9f9ad1ac087066c1e597054fafc55e95f2ccb1e.tar.gz
firmament-e9f9ad1ac087066c1e597054fafc55e95f2ccb1e.tar.bz2
firmament-e9f9ad1ac087066c1e597054fafc55e95f2ccb1e.zip
Fix color not being reset after block highlights
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt')
-rw-r--r--src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt b/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt
index 1d3628e..39cfb35 100644
--- a/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt
+++ b/src/main/kotlin/moe/nea/notenoughupdates/features/NEUFeature.kt
@@ -1,5 +1,7 @@
package moe.nea.notenoughupdates.features
+import moe.nea.notenoughupdates.util.config.ManagedConfig
+
interface NEUFeature {
val name: String
val identifier: String
@@ -10,7 +12,7 @@ interface NEUFeature {
set(value) {
FeatureManager.setEnabled(identifier, value)
}
-
+ val config: ManagedConfig? get() = null
fun onLoad()
}