diff options
author | Ovi-111 <142670705+Ovi-111@users.noreply.github.com> | 2024-09-08 01:00:55 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-07 21:00:55 +0200 |
commit | 2d2ba2a02f542d288e142cf3a626dc81cb163006 (patch) | |
tree | ee1ba401b227f0122382a3edc0eb5ce416fa9398 /src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt | |
parent | f40863a821218938b8f53f17a4441ad5c973d0e3 (diff) | |
download | skyhanni-2d2ba2a02f542d288e142cf3a626dc81cb163006.tar.gz skyhanni-2d2ba2a02f542d288e142cf3a626dc81cb163006.tar.bz2 skyhanni-2d2ba2a02f542d288e142cf3a626dc81cb163006.zip |
Feature: Dungeon Secret Chime (#2478)
Co-authored-by: Ovi <ovi2561@gmail.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt new file mode 100644 index 000000000..9a7f5119a --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt @@ -0,0 +1,7 @@ +package at.hannibal2.skyhanni.events + +import at.hannibal2.skyhanni.api.event.SkyHanniEvent +import at.hannibal2.skyhanni.data.ClickedBlockType +import at.hannibal2.skyhanni.utils.LorenzVec + +class DungeonBlockClickEvent(val position: LorenzVec, val blockType: ClickedBlockType) : SkyHanniEvent() |