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

import net.minecraft.entity.Entity

data class EntityDespawnEvent(
    val entity: Entity?, val entityId: Int,
    val reason: Entity.RemovalReason,
) : FirmamentEvent() {
    companion object: FirmamentEventBus<EntityDespawnEvent>()
}