mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
c47206617d
* Reorganize sources * Refactor * Remove relative paths * Renames * Fix gitignore * Remove stuff * Try fixing format script * Fix format * Fix format * Fix naming script * Test format * Fix format
32 lines
922 B
C++
32 lines
922 B
C++
#ifndef MXMEDIAMANGER_H
|
|
#define MXMEDIAMANGER_H
|
|
|
|
#include "mxcore.h"
|
|
#include "mxcriticalsection.h"
|
|
#include "mxpresenterlist.h"
|
|
#include "mxthread.h"
|
|
#include "mxtypes.h"
|
|
|
|
// VTABLE: LEGO1 0x100dc6b0
|
|
// SIZE 0x2c
|
|
class MxMediaManager : public MxCore {
|
|
public:
|
|
MxMediaManager();
|
|
virtual ~MxMediaManager() override;
|
|
|
|
virtual MxResult Tickle() override; // vtable+08
|
|
virtual MxResult InitPresenters(); // vtable+14
|
|
virtual void Destroy(); // vtable+18
|
|
virtual void AddPresenter(MxPresenter& p_presenter); // vtable+1c
|
|
virtual void RemovePresenter(MxPresenter& p_presenter); // vtable+20
|
|
virtual void StopPresenters(); // vtable+24
|
|
|
|
MxResult Init();
|
|
|
|
protected:
|
|
MxPresenterList* m_presenters;
|
|
MxThread* m_thread; // 0xc
|
|
MxCriticalSection m_criticalSection; // 0x10
|
|
};
|
|
|
|
#endif // MXMEDIAMANGER_H
|