diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-16 20:31:04 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-16 20:31:04 +0100 |
commit | 07351036391533533cd059ef6910c6bc1efeb36f (patch) | |
tree | 723c655ac358227b98548a4e81f1eafd00636265 /src/main/java/at/hannibal2/skyhanni/events | |
parent | 67011d64534f855959ab33abc56e83eec713e924 (diff) | |
download | skyhanni-07351036391533533cd059ef6910c6bc1efeb36f.tar.gz skyhanni-07351036391533533cd059ef6910c6bc1efeb36f.tar.bz2 skyhanni-07351036391533533cd059ef6910c6bc1efeb36f.zip |
Show copper to coin prices inside the Sky Mart inventory.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/InventoryCloseEvent.kt | 5 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/InventoryOpenEvent.kt | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/InventoryCloseEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/InventoryCloseEvent.kt new file mode 100644 index 000000000..8ff1f481b --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/InventoryCloseEvent.kt @@ -0,0 +1,5 @@ +package at.hannibal2.skyhanni.events + +import at.hannibal2.skyhanni.data.InventoryData + +class InventoryCloseEvent(val inventory: InventoryData.Inventory): LorenzEvent()
\ No newline at end of file diff --git a/src/main/java/at/hannibal2/skyhanni/events/InventoryOpenEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/InventoryOpenEvent.kt new file mode 100644 index 000000000..50387fa18 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/InventoryOpenEvent.kt @@ -0,0 +1,5 @@ +package at.hannibal2.skyhanni.events + +import at.hannibal2.skyhanni.data.InventoryData + +class InventoryOpenEvent(val inventory: InventoryData.Inventory): LorenzEvent()
\ No newline at end of file |