mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
18 lines
283 B
C++
18 lines
283 B
C++
#ifndef MXEVENTMANAGER_H
|
|
#define MXEVENTMANAGER_H
|
|
|
|
#include "mxmediamanager.h"
|
|
|
|
// VTABLE 0x100dc900
|
|
// SIZE 0x2c
|
|
class MxEventManager : public MxMediaManager
|
|
{
|
|
public:
|
|
MxEventManager();
|
|
virtual ~MxEventManager() override;
|
|
|
|
private:
|
|
void Init();
|
|
};
|
|
|
|
#endif // MXEVENTMANAGER_H
|