diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-09-21 13:03:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-21 13:03:18 +0200 |
commit | 1052203d26f8ded5d7a1b1eb25a32e0ce2e6c784 (patch) | |
tree | bc9c0b23aa5ed85562da4c6f8c30721f5a3d444d /src/main/java/at/hannibal2/skyhanni/events | |
parent | 1739a5f13194bc136e169a7870a14c2704174be8 (diff) | |
download | skyhanni-1052203d26f8ded5d7a1b1eb25a32e0ce2e6c784.tar.gz skyhanni-1052203d26f8ded5d7a1b1eb25a32e0ce2e6c784.tar.bz2 skyhanni-1052203d26f8ded5d7a1b1eb25a32e0ce2e6c784.zip |
Feature: Carry Tracker (#2185)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/entity/slayer/SlayerDeathEvent.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/entity/slayer/SlayerDeathEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/entity/slayer/SlayerDeathEvent.kt new file mode 100644 index 000000000..620e4fb3e --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/entity/slayer/SlayerDeathEvent.kt @@ -0,0 +1,6 @@ +package at.hannibal2.skyhanni.events.entity.slayer + +import at.hannibal2.skyhanni.api.event.SkyHanniEvent +import at.hannibal2.skyhanni.features.slayer.SlayerType + +class SlayerDeathEvent(val slayerType: SlayerType, val tier: Int, val owner: String?) : SkyHanniEvent() |