mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
legoinputmanager: fixed enum
This commit is contained in:
parent
2a93655f06
commit
a746a28702
1 changed files with 6 additions and 6 deletions
|
@ -3,12 +3,12 @@
|
||||||
|
|
||||||
__declspec(dllexport) enum NotificationId
|
__declspec(dllexport) enum NotificationId
|
||||||
{
|
{
|
||||||
NONE = 0x0,
|
NONE = 0,
|
||||||
KEYDOWN = 0x7,
|
KEYDOWN = 7,
|
||||||
MOUSEUP = 0x8,
|
MOUSEUP = 8,
|
||||||
MOUSEDOWN = 0x9,
|
MOUSEDOWN = 9,
|
||||||
MOUSEMOVE = 0x10,
|
MOUSEMOVE = 10,
|
||||||
TIMER = 0xF
|
TIMER = 15
|
||||||
};
|
};
|
||||||
|
|
||||||
class LegoInputManager
|
class LegoInputManager
|
||||||
|
|
Loading…
Reference in a new issue