aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin')
-rw-r--r--src/main/kotlin/dulkirmod/events/Events.kt9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/kotlin/dulkirmod/events/Events.kt b/src/main/kotlin/dulkirmod/events/Events.kt
new file mode 100644
index 0000000..45cc8ff
--- /dev/null
+++ b/src/main/kotlin/dulkirmod/events/Events.kt
@@ -0,0 +1,9 @@
+package dulkirmod.events
+
+import net.minecraft.entity.Entity
+import net.minecraftforge.fml.common.eventhandler.Event
+
+/**
+ * Fired when an entity is removed from the world.
+ */
+class EntityRemovedEvent(val entity: Entity) : Event() \ No newline at end of file