Fix some issues idk
This commit is contained in:
@@ -18,10 +18,16 @@
|
||||
|
||||
package moe.nea.firmament.events
|
||||
|
||||
import net.minecraft.client.gui.screen.ingame.HandledScreen
|
||||
import net.minecraft.client.option.KeyBinding
|
||||
import moe.nea.firmament.keybindings.IKeyBinding
|
||||
|
||||
data class HandledScreenKeyPressedEvent(val keyCode: Int, val scanCode: Int, val modifiers: Int) : FirmamentEvent.Cancellable() {
|
||||
data class HandledScreenKeyPressedEvent(
|
||||
val screen: HandledScreen<*>,
|
||||
val keyCode: Int,
|
||||
val scanCode: Int,
|
||||
val modifiers: Int
|
||||
) : FirmamentEvent.Cancellable() {
|
||||
companion object : FirmamentEventBus<HandledScreenKeyPressedEvent>()
|
||||
|
||||
fun matches(keyBinding: KeyBinding): Boolean {
|
||||
|
||||
Reference in New Issue
Block a user