diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-05-08 21:13:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 21:13:21 +0200 |
commit | 2d9844426886cd488703d05ee58558e05d4c3987 (patch) | |
tree | 8315b3b17945ff965af8a3aa8380458f39313fb0 /src/main/java/at/hannibal2/skyhanni/events | |
parent | 64ffd48ac791019ce4e4a610541b143a4c9d9b44 (diff) | |
download | skyhanni-2d9844426886cd488703d05ee58558e05d4c3987.tar.gz skyhanni-2d9844426886cd488703d05ee58558e05d4c3987.tar.bz2 skyhanni-2d9844426886cd488703d05ee58558e05d4c3987.zip |
Feature: Profit per corpse loot (#1734)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com>
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/mining/CorpseLootedEvent.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt new file mode 100644 index 000000000..e73357296 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt @@ -0,0 +1,6 @@ +package at.hannibal2.skyhanni.events.mining + +import at.hannibal2.skyhanni.events.LorenzEvent +import at.hannibal2.skyhanni.features.mining.mineshaft.CorpeType + +class CorpseLootedEvent(val corpseType: CorpeType, val loot: List<Pair<String, Int>>) : LorenzEvent() |