isle/LEGO1/legoinputmanager.h
2023-06-18 21:02:00 -07:00

24 lines
496 B
C++

#ifndef LEGOINPUTMANAGER_H
#define LEGOINPUTMANAGER_H
__declspec(dllexport) enum NotificationId
{
NONE = 0,
KEYDOWN = 7,
MOUSEUP = 8,
MOUSEDOWN = 9,
MOUSEMOVE = 10,
TIMER = 15
};
class LegoInputManager
{
public:
__declspec(dllexport) void QueueEvent(NotificationId id, unsigned char p2, long p3, long p4, unsigned char p5);
__declspec(dllexport) void Register(MxCore *);
__declspec(dllexport) void UnRegister(MxCore *);
int m_unk00[0x400];
};
#endif // LEGOINPUTMANAGER_H