Struct for representing events and informations associated with them.
This structure holds information about an event, it is composed of a type, an information and the state of the modifier keys.
- Warning
- As the information is coded using an union, even though the event has multiple fields, only one is active at a time, so reading from the others is undefined. For example reading the mouse value of a keyPressed event is undefined behaviour. The information for each type of event is documented in the EventType enum documentation.
Definition at line 295 of file Event.hpp.