TDME2 1.9.121
GUIMouseEvent.cpp
Go to the documentation of this file.
1#include <tdme/tdme.h>
3
5
6GUIMouseEvent::GUIMouseEvent()
7{
8 this->time = -1;
9 this->type = GUIMouseEventType::MOUSEEVENT_NONE;
10 this->x = -1;
11 this->y = -1;
12 this->xUnscaled = -1;
13 this->yUnscaled = -1;
14 this->button = -1;
15 this->wheelX = 0.0f;
16 this->wheelY = 0.0f;
17 this->wheelZ = 0.0f;
18 this->shiftDown = false;
19 this->altDown = false;
20 this->controlDown = false;
21 this->metaDown = false;
22 this->processed = false;
23}
24
26}