2023-04-27 22:19:39 -04:00
|
|
|
#ifndef LEGOMODELPRESENTER_H
|
|
|
|
#define LEGOMODELPRESENTER_H
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxvideopresenter.h"
|
|
|
|
|
|
|
|
// VTABLE 0x100d4e50
|
|
|
|
// SIZE 0x6c (discovered through inline constructor at 0x10009ae6)
|
2023-10-24 19:38:27 -04:00
|
|
|
class LegoModelPresenter : public MxVideoPresenter {
|
2023-04-27 22:19:39 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
__declspec(dllexport) static void configureLegoModelPresenter(int param_1);
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
// OFFSET: LEGO1 0x1000ccb0
|
|
|
|
inline const char* ClassName() const override // vtable+0xc
|
|
|
|
{
|
|
|
|
// 0x100f067c
|
|
|
|
return "LegoModelPresenter";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
// OFFSET: LEGO1 0x1000ccc0
|
|
|
|
inline MxBool IsA(const char* name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, LegoModelPresenter::ClassName()) || MxVideoPresenter::IsA(name);
|
|
|
|
}
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOMODELPRESENTER_H
|