1 #ifndef CHARACTER_TYPED_EVENT_H
2 #define CHARACTER_TYPED_EVENT_H
15 unsigned char character;
32 static std::shared_ptr<CharacterTypedEvent>
create(
const unsigned char character) {
return std::make_shared<CharacterTypedEvent>(character); }
Class for event.
Definition: event.h:10
Definition: event_type.h:22
EventType
Event type enum that is used when passing events.
Definition: event_type.h:12
Event(const EventType &type)
Event constructor.
Definition: event.h:21