Interface IMouse.MouseClickedListener
- 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.
This listener interface receives clicked events for the mouse.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidmouseClicked(MouseEvent event) Invoked when the mouse button has been clicked (pressed and released) on the game window.
-
Method Details
-
mouseClicked
Invoked when the mouse button has been clicked (pressed and released) on the game window.- Parameters:
event- The mouse event.
-