From 2d2ba2a02f542d288e142cf3a626dc81cb163006 Mon Sep 17 00:00:00 2001 From: Ovi-111 <142670705+Ovi-111@users.noreply.github.com> Date: Sun, 8 Sep 2024 01:00:55 +0600 Subject: Feature: Dungeon Secret Chime (#2478) Co-authored-by: Ovi Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt (limited to 'src/main/java/at/hannibal2/skyhanni/events/DungeonClickedBlockEvent.kt') 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() -- cgit