Event triggered when a keyboard key is pressed. More...
#include <KeyEvent.h>
Public Member Functions | |
| KeyPressedEvent (int keyCode) | |
| std::string | ToString () const override |
Public Member Functions inherited from AE::Events::KeyEvent | |
| int | GetKeyCode () const |
Public Member Functions inherited from AE::Events::Event | |
| virtual EventType | GetEventType () const =0 |
| virtual const char * | GetName () const =0 |
| virtual int | GetCategoryFlags () const =0 |
| bool | IsInCategory (EventCategory category) |
Additional Inherited Members | |
Public Attributes inherited from AE::Events::Event | |
| bool | Handled = false |
Protected Member Functions inherited from AE::Events::KeyEvent | |
| KeyEvent (int keyCode) | |
Protected Attributes inherited from AE::Events::KeyEvent | |
| int | m_KeyCode |
Event triggered when a keyboard key is pressed.
Represents a key press event, providing information about which key was pressed. Inherits from KeyEvent to handle keyboard input processing.
|
inlineoverridevirtual |
Reimplemented from AE::Events::Event.