mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Introduce clang-format (#240)
This commit is contained in:

committed by
GitHub

parent
e928fc9425
commit
b449da1fa3
@@ -3,31 +3,30 @@
|
||||
|
||||
#include "mxcore.h"
|
||||
#include "mxcriticalsection.h"
|
||||
#include "mxthread.h"
|
||||
#include "mxpresenterlist.h"
|
||||
#include "mxthread.h"
|
||||
#include "mxtypes.h"
|
||||
|
||||
// VTABLE 0x100dc6b0
|
||||
// SIZE 0x2c
|
||||
class MxMediaManager : public MxCore
|
||||
{
|
||||
class MxMediaManager : public MxCore {
|
||||
public:
|
||||
MxMediaManager();
|
||||
virtual ~MxMediaManager() override;
|
||||
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
|
||||
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();
|
||||
MxResult Init();
|
||||
|
||||
protected:
|
||||
MxPresenterList *m_presenters;
|
||||
MxThread *m_thread; // 0xc
|
||||
MxCriticalSection m_criticalSection; // 0x10
|
||||
MxPresenterList* m_presenters;
|
||||
MxThread* m_thread; // 0xc
|
||||
MxCriticalSection m_criticalSection; // 0x10
|
||||
};
|
||||
|
||||
#endif // MXMEDIAMANGER_H
|
||||
|
Reference in New Issue
Block a user