diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 19:45:11 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 19:45:11 +0100 |
commit | d4d46c46404cf1424e9262f98e544e0336f2003f (patch) | |
tree | 7b72dab6f57b0c23e45594a93eafcf60ce7b4b94 /src/main/java/at/hannibal2/skyhanni/events | |
parent | 5a710d5101cd24371f3476c837b1a24f83454803 (diff) | |
download | skyhanni-d4d46c46404cf1424e9262f98e544e0336f2003f.tar.gz skyhanni-d4d46c46404cf1424e9262f98e544e0336f2003f.tar.bz2 skyhanni-d4d46c46404cf1424e9262f98e544e0336f2003f.zip |
Added PestFinder
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/DamageIndicatorDeathEvent.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/DamageIndicatorDeathEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/DamageIndicatorDeathEvent.kt new file mode 100644 index 000000000..141f293a3 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/DamageIndicatorDeathEvent.kt @@ -0,0 +1,6 @@ +package at.hannibal2.skyhanni.events + +import at.hannibal2.skyhanni.features.combat.damageindicator.EntityData +import net.minecraft.entity.EntityLivingBase + +class DamageIndicatorDeathEvent(val entity: EntityLivingBase, val data: EntityData) : LorenzEvent() |