Add MxList, MxPresenterList, add to MxMediaManager (#122)

* Add MxList, MxPresenterList, add to MxMediaManager

* Match ~MxList<T>
This commit is contained in:
Christian Semmler
2023-09-17 00:18:56 -04:00
committed by GitHub
parent b1a2aeaed6
commit 253538feed
6 changed files with 166 additions and 9 deletions

View File

@@ -4,19 +4,27 @@
#include "mxcore.h"
#include "mxcriticalsection.h"
#include "mxthread.h"
#include "mxpresenterlist.h"
#include "mxtypes.h"
// VTABLE 0x100dc6b0
// SIZE 0x2c
class MxMediaManager : public MxCore
{
public:
MxMediaManager();
virtual ~MxMediaManager() override;
virtual MxResult Tickle(); // vtable+08
virtual MxResult InitPresenters(); // vtable+14
virtual void Destroy(); // vtable+18
// vtable+1c
// vtable+20
// vtable+24
MxResult Init();
void Teardown();
private:
void* m_unk08;
MxPresenterList *m_presenters;
MxThread* m_thread; // 0xc
protected: