aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/events/FirmamentCustomPayloadEvent.kt
blob: 779ca51ce2f1cef2540370cd5d4faa91161baf11 (plain)
1
2
3
4
5
6
7
8
9
10
package moe.nea.firmament.events

import moe.nea.firmament.apis.ingame.FirmamentCustomPayload

data class FirmamentCustomPayloadEvent(
    val payload: FirmamentCustomPayload
) : FirmamentEvent() {
    companion object : FirmamentEventBus<FirmamentCustomPayloadEvent>()
}