2023-06-29 04:10:08 -04:00
|
|
|
#ifndef MXVIDEOPRESENTER_H
|
|
|
|
#define MXVIDEOPRESENTER_H
|
|
|
|
|
|
|
|
#include "mxmediapresenter.h"
|
|
|
|
|
2023-07-02 03:00:28 -04:00
|
|
|
#include "decomp.h"
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
class MxVideoPresenter : public MxMediaPresenter
|
|
|
|
{
|
|
|
|
public:
|
2023-07-02 05:07:11 -04:00
|
|
|
MxVideoPresenter()
|
|
|
|
{
|
2023-07-02 03:00:28 -04:00
|
|
|
Init();
|
|
|
|
}
|
2023-07-02 05:07:11 -04:00
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
// OFFSET: LEGO1 0x1000c820
|
|
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
2023-07-02 03:00:28 -04:00
|
|
|
{
|
2023-06-29 04:10:08 -04:00
|
|
|
// 0x100f0760
|
|
|
|
return "MxVideoPresenter";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1000c830
|
|
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, MxVideoPresenter::ClassName()) || MxMediaPresenter::IsA(name);
|
|
|
|
}
|
2023-07-02 03:00:28 -04:00
|
|
|
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
undefined4 m_unk50;
|
|
|
|
undefined4 m_unk54;
|
|
|
|
undefined4 m_unk58;
|
2023-07-02 05:07:11 -04:00
|
|
|
undefined2 m_unk5c;
|
2023-09-20 07:48:46 -04:00
|
|
|
unsigned char m_flags; // 0x5e
|
2023-07-02 05:07:11 -04:00
|
|
|
undefined4 m_unk60;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXVIDEOPRESENTER_H
|