aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/events/FirmamentCustomPayloadEvent.kt
blob: 057fcefd5868a7938b8f37b815c3ffd85f4a3317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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.apis.ingame.FirmamentCustomPayload

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