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
6
namespace
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
17
struct
CharacterTypedEvent
:
public
BaseEvent
{
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
Grindstone::Events::BaseEvent
Definition
BaseEvent.hpp:7
Grindstone::Events::CharacterTypedEvent
Definition
KeyEvent.hpp:17
Grindstone::Events::KeyPressEvent
Definition
KeyEvent.hpp:8
sources
code
Common
Event
KeyEvent.hpp
Generated by
1.12.0