Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
KeyEvent.hpp
1#pragma once
2
3#include "BaseEvent.hpp"
4#include "KeyPressCode.hpp"
5
6namespace Grindstone {
7 namespace Events {
8 struct KeyPressEvent : public BaseEvent {
9 KeyPressEvent(KeyPressCode code, bool isPressed)
10 : code(code), isPressed(isPressed) {}
11 KeyPressCode code = KeyPressCode::Invalid;
12 bool isPressed = false;
13
14 SETUP_EVENT(KeyPress)
15 }; // struct KeyPressEvent
16
18 CharacterTypedEvent(unsigned short character)
19 : character(character) {}
20 unsigned short character = 0;
21
22 SETUP_EVENT(CharacterTyped)
23 }; // struct CharacterTypedEvent
24 } // namespace Events
25} // namespace Grindstone
Definition BaseEvent.hpp:7
Definition KeyEvent.hpp:17
Definition KeyEvent.hpp:8