diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-24 04:20:56 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-24 04:20:56 +0100 |
commit | b32344991743f53c94a48f8a0054d0126b15bbfd (patch) | |
tree | ac4b0ba7d95bb7d0dcc650c77d6e9272459bb8c1 /src/main/java/at/hannibal2/skyhanni/events | |
parent | 25efa3d4ee8c652a4d75b5357b7705b0267c08ae (diff) | |
download | skyhanni-b32344991743f53c94a48f8a0054d0126b15bbfd.tar.gz skyhanni-b32344991743f53c94a48f8a0054d0126b15bbfd.tar.bz2 skyhanni-b32344991743f53c94a48f8a0054d0126b15bbfd.zip |
Created and used ItemAddEvent, /shtrackcollection now supports sack messages.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/ItemAddEvent.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/ItemAddEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/ItemAddEvent.kt new file mode 100644 index 000000000..ad0c6355d --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/ItemAddEvent.kt @@ -0,0 +1,7 @@ +package at.hannibal2.skyhanni.events + +import at.hannibal2.skyhanni.data.ItemAddManager +import at.hannibal2.skyhanni.utils.NEUInternalName + +class ItemAddEvent(val internalName: NEUInternalName, val amount: Int, val source: ItemAddManager.Source) : + LorenzEvent() |