mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-27 01:56:28 -05:00
62b97b8f1f
* implement mxomni::create, and match MxStreamController::Open * Use enum for mxparam type * Fix return type * Match MxOmni::Notify * Remove unused variable * Added override keywords --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
19 lines
386 B
C++
19 lines
386 B
C++
#ifndef MXEVENTMANAGER_H
|
|
#define MXEVENTMANAGER_H
|
|
|
|
#include "mxmediamanager.h"
|
|
#include "decomp.h"
|
|
|
|
// VTABLE 0x100dc900
|
|
// SIZE 0x2c
|
|
class MxEventManager : public MxMediaManager
|
|
{
|
|
public:
|
|
MxEventManager();
|
|
virtual ~MxEventManager() override;
|
|
virtual MxResult vtable0x28(undefined4 p_unknown1, MxU8 p_unknown2); // vtable+28
|
|
private:
|
|
void Init();
|
|
};
|
|
|
|
#endif // MXEVENTMANAGER_H
|