aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-13 22:54:08 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-13 22:54:08 +0100
commit67ed7a34d52067dd83f93d8ab8e81401149b5659 (patch)
tree67de77857f661d7a5324dcc38a59a2df5e3e025e /src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt
parent848e9e6ca15b5e70dc0a282d7adb8c2f299be2c4 (diff)
downloadskyhanni-67ed7a34d52067dd83f93d8ab8e81401149b5659.tar.gz
skyhanni-67ed7a34d52067dd83f93d8ab8e81401149b5659.tar.bz2
skyhanni-67ed7a34d52067dd83f93d8ab8e81401149b5659.zip
Fixed fire veil particle hider bug.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt
new file mode 100644
index 000000000..eca74c707
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt
@@ -0,0 +1,7 @@
+package at.hannibal2.skyhanni.events
+
+import at.hannibal2.skyhanni.data.ClickType
+import at.hannibal2.skyhanni.utils.LorenzVec
+import net.minecraft.item.ItemStack
+
+class BlockClickEvent(val clickType: ClickType, val position: LorenzVec, val itemInHand: ItemStack?) : LorenzEvent() \ No newline at end of file