mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
reorganized repo, implemented mxcore
This commit is contained in:
22
LEGO1/legoinputmanager.h
Normal file
22
LEGO1/legoinputmanager.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef LEGOINPUTMANAGER_H
|
||||
#define LEGOINPUTMANAGER_H
|
||||
|
||||
__declspec(dllexport) enum NotificationId
|
||||
{
|
||||
NONE = 0x0,
|
||||
KEYDOWN = 0x7,
|
||||
MOUSEUP = 0x8,
|
||||
MOUSEDOWN = 0x9,
|
||||
MOUSEMOVE = 0x10,
|
||||
TIMER = 0xF
|
||||
};
|
||||
|
||||
class LegoInputManager
|
||||
{
|
||||
public:
|
||||
__declspec(dllexport) void QueueEvent(NotificationId id, unsigned char p2, long p3, long p4, unsigned char p5);
|
||||
|
||||
int m_unk00[0x400];
|
||||
};
|
||||
|
||||
#endif // LEGOINPUTMANAGER_H
|
Reference in New Issue
Block a user