2023-06-29 04:10:08 -04:00
|
|
|
#ifndef MXFLCPRESENTER_H
|
|
|
|
#define MXFLCPRESENTER_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 0x100dc2c0
|
|
|
|
// SIZE 0x68
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxFlcPresenter : public MxVideoPresenter {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxFlcPresenter();
|
|
|
|
virtual ~MxFlcPresenter() override;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-11-21 03:44:45 -05:00
|
|
|
// OFFSET: LEGO1 0x1004e200
|
|
|
|
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, MxFlcPresenter::ClassName()) || MxVideoPresenter::IsA(name);
|
|
|
|
}
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
// OFFSET: LEGO1 0x100b33f0
|
|
|
|
inline virtual const char* ClassName() const override // vtable+0xc
|
|
|
|
{
|
|
|
|
// 0x100f43c8
|
|
|
|
return "MxFlcPresenter";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-11-19 07:28:06 -05:00
|
|
|
virtual void VTable0x70() override; // vtable+0x70
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
undefined4* m_unk64;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXFLCPRESENTER_H
|