isle-portable/LEGO1/omni/include/mxmediamanager.h
Christian Semmler 6af0c6cb1a
Implement/match a few LegoEntity functions (#445)
* Implement/match a few LegoEntity functions

* Add annotations
2024-01-16 20:33:03 +01:00

32 lines
959 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 RegisterPresenter(MxPresenter& p_presenter); // vtable+1c
virtual void UnregisterPresenter(MxPresenter& p_presenter); // vtable+20
virtual void StopPresenters(); // vtable+24
MxResult Init();
protected:
MxPresenterList* m_presenters; // 0x8
MxThread* m_thread; // 0xc
MxCriticalSection m_criticalSection; // 0x10
};
#endif // MXMEDIAMANGER_H