aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/subscription/Subscription.kt
blob: 83b91c9c8c5ace283de84ee519fc60145ebc4937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package moe.nea.firmament.events.subscription

import moe.nea.firmament.events.FirmamentEvent
import moe.nea.firmament.events.FirmamentEventBus
import moe.nea.firmament.features.FirmamentFeature

interface SubscriptionOwner {
    val delegateFeature: FirmamentFeature
}

data class Subscription<T : FirmamentEvent>(
    val owner: Any,
    val invoke: (T) -> Unit,
    val eventBus: FirmamentEventBus<T>,
)