Interface EngineKeyboardHandler

All Superinterfaces:
EngineInterface<net.minecraft.client.KeyboardHandler>
All Known Implementing Classes:
KeyboardHandlerMixin

public interface EngineKeyboardHandler extends EngineInterface<net.minecraft.client.KeyboardHandler>
Extends keyboard input handling with key press and character typed hooks.
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    engine$charTyped(long p_window, net.minecraft.client.input.CharacterEvent event, org.spongepowered.asm.mixin.injection.callback.CallbackInfo ci)
    Called on character typed events to allow interception or augmentation.
    default void
    engine$keyPress(long p_window, int action, net.minecraft.client.input.KeyEvent event, org.spongepowered.asm.mixin.injection.callback.CallbackInfo ci)
    Called on key press events to allow interception or augmentation.

    Methods inherited from interface EngineInterface

    engine$self
  • Method Details

    • engine$keyPress

      default void engine$keyPress(long p_window, int action, net.minecraft.client.input.KeyEvent event, org.spongepowered.asm.mixin.injection.callback.CallbackInfo ci)
      Called on key press events to allow interception or augmentation.
    • engine$charTyped

      default void engine$charTyped(long p_window, net.minecraft.client.input.CharacterEvent event, org.spongepowered.asm.mixin.injection.callback.CallbackInfo ci)
      Called on character typed events to allow interception or augmentation.