TDME2 1.9.121
GUIKeyboardEvent.cpp
Go to the documentation of this file.
1#include <tdme/tdme.h>
3
5
6GUIKeyboardEvent::GUIKeyboardEvent()
7{
8 this->time = -1LL;
9 this->type = GUIKeyboardEventType::KEYBOARDEVENT_NONE;
10 this->keyCode = -1;
11 this->keyChar = 0;
12 this->metaDown = false;
13 this->controlDown = false;
14 this->altDown = false;
15 this->shiftDown = false;
16 this->processed = false;
17}
18
20}