diff options
author | Linnea Gräf <nea@nea.moe> | 2024-02-22 00:30:05 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-02-26 15:37:12 +0100 |
commit | 602112724d8236c1ec6671e1893128862c9f5815 (patch) | |
tree | fd0695839af0b2a8296e8d3009432644212638ce /src/main/kotlin/moe/nea/firmament/events | |
parent | 2e571210c948d90a7d0ea8b07184102ceb401962 (diff) | |
download | Firmament-602112724d8236c1ec6671e1893128862c9f5815.tar.gz Firmament-602112724d8236c1ec6671e1893128862c9f5815.tar.bz2 Firmament-602112724d8236c1ec6671e1893128862c9f5815.zip |
Add custom model predicates
Add regex support
Add and and or predicates
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/events')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/events/FeaturesInitializedEvent.kt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/events/FeaturesInitializedEvent.kt b/src/main/kotlin/moe/nea/firmament/events/FeaturesInitializedEvent.kt new file mode 100644 index 0000000..da18568 --- /dev/null +++ b/src/main/kotlin/moe/nea/firmament/events/FeaturesInitializedEvent.kt @@ -0,0 +1,13 @@ +/* + * SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe> + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package moe.nea.firmament.events + +import moe.nea.firmament.features.FirmamentFeature + +data class FeaturesInitializedEvent(val features: List<FirmamentFeature>) : FirmamentEvent() { + companion object : FirmamentEventBus<FeaturesInitializedEvent>() +} |