diff options
author | Empa <42304516+ItsEmpa@users.noreply.github.com> | 2024-04-13 08:35:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-13 08:35:51 +0200 |
commit | 0d41a281c8d87128a0004fed96dada8b1b5e950a (patch) | |
tree | 1f4492d4dfb646178c3e7409e519abaea5543efd /src/main/java/at/hannibal2/skyhanni/events/QuiverUpdateEvent.kt | |
parent | 2d3368725ea962d8ff42d17cf1623a2229da7b4f (diff) | |
download | skyhanni-0d41a281c8d87128a0004fed96dada8b1b5e950a.tar.gz skyhanni-0d41a281c8d87128a0004fed96dada8b1b5e950a.tar.bz2 skyhanni-0d41a281c8d87128a0004fed96dada8b1b5e950a.zip |
Feature: Quiver Display (#1190)
Co-authored-by: Cal <cwolfson58@gmail.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events/QuiverUpdateEvent.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/QuiverUpdateEvent.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/QuiverUpdateEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/QuiverUpdateEvent.kt new file mode 100644 index 000000000..a084a1741 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/QuiverUpdateEvent.kt @@ -0,0 +1,5 @@ +package at.hannibal2.skyhanni.events + +import at.hannibal2.skyhanni.data.ArrowType + +class QuiverUpdateEvent(val currentArrow: ArrowType?, val currentAmount: Int, val hideAmount: Boolean) : LorenzEvent() |