diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-13 22:54:08 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-13 22:54:08 +0100 |
commit | 67ed7a34d52067dd83f93d8ab8e81401149b5659 (patch) | |
tree | 67de77857f661d7a5324dcc38a59a2df5e3e025e /src/main/java/at/hannibal2/skyhanni/events/BlockClickEvent.kt | |
parent | 848e9e6ca15b5e70dc0a282d7adb8c2f299be2c4 (diff) | |
download | skyhanni-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.kt | 7 |
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 |