Interface IMouse.MouseMovedListener

All Superinterfaces:
EventListener
Enclosing interface:
IMouse
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface IMouse.MouseMovedListener extends EventListener
This listener interface receives moved events for the mouse.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Invoked when the mouse cursor has been moved on the game window but no buttons have been pushed.
  • Method Details

    • mouseMoved

      void mouseMoved(MouseEvent event)
      Invoked when the mouse cursor has been moved on the game window but no buttons have been pushed.
      Parameters:
      event - The mouse event.