mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-04-26 14:24:08 -04: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
|
||||
{
|
||||
NONE = 0x0,
|
||||
KEYDOWN = 0x7,
|
||||
MOUSEUP = 0x8,
|
||||
MOUSEDOWN = 0x9,
|
||||
MOUSEMOVE = 0x10,
|
||||
TIMER = 0xF
|
||||
NONE = 0,
|
||||
KEYDOWN = 7,
|
||||
MOUSEUP = 8,
|
||||
MOUSEDOWN = 9,
|
||||
MOUSEMOVE = 10,
|
||||
TIMER = 15
|
||||
};
|
||||
|
||||
class LegoInputManager
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue