2023-06-29 04:10:08 -04:00
|
|
|
#ifndef MXSTILLPRESENTER_H
|
|
|
|
#define MXSTILLPRESENTER_H
|
|
|
|
|
2023-07-02 03:00:28 -04:00
|
|
|
#include "decomp.h"
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "mxvideopresenter.h"
|
2023-07-02 03:00:28 -04:00
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
// VTABLE 0x100d7a38
|
|
|
|
// SIZE 0x6c
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxStillPresenter : public MxVideoPresenter {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-11-04 09:47:35 -04:00
|
|
|
// OFFSET: LEGO1 0x100435c0
|
|
|
|
inline virtual const char* ClassName() const override // vtable+0xc
|
|
|
|
{
|
|
|
|
// 0x100f0184
|
|
|
|
return "MxStillPresenter";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100435d0
|
|
|
|
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, MxStillPresenter::ClassName()) || MxVideoPresenter::IsA(name);
|
|
|
|
}
|
|
|
|
|
2023-10-25 18:16:08 -04:00
|
|
|
virtual void ParseExtra() override; // vtable+0x30
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
MxStillPresenter() { m_unk68 = 0; }
|
|
|
|
undefined4 m_unk64;
|
|
|
|
undefined4 m_unk68;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXSTILLPRESENTER_H
|