Files
Firmament/src/main/kotlin/moe/nea/firmament/events/FirmamentCustomPayloadEvent.kt
Linnea Gräf 63d0d32e46 Clean up reuse comments
[no changelog]
2024-08-08 01:15:43 +02:00

11 lines
273 B
Kotlin

package moe.nea.firmament.events
import moe.nea.firmament.apis.ingame.FirmamentCustomPayload
data class FirmamentCustomPayloadEvent(
val payload: FirmamentCustomPayload
) : FirmamentEvent() {
companion object : FirmamentEventBus<FirmamentCustomPayloadEvent>()
}