Add world keyboard event

This commit is contained in:
nea
2023-06-10 22:37:58 +02:00
parent 9120fb0650
commit 98b778d0dd
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package moe.nea.firmament.events
import net.minecraft.client.option.KeyBinding
import moe.nea.firmament.keybindings.IKeyBinding
data class WorldKeyboardEvent(val keyCode: Int, val scanCode: Int, val modifiers: Int) : FirmamentEvent.Cancellable() {
companion object : FirmamentEventBus<WorldKeyboardEvent>()
fun matches(keyBinding: KeyBinding): Boolean {
return matches(IKeyBinding.minecraft(keyBinding))
}
fun matches(keyBinding: IKeyBinding): Boolean {
return keyBinding.matches(keyCode, scanCode, modifiers)
}
}