mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
3e7cb6a7a8
* Match MxMediaPresenter::Init * LegoPalettePresenter::Init() * LegoPalettePresenter: for now, use undefined4 type
35 lines
703 B
C++
35 lines
703 B
C++
#ifndef LEGOPALETTEPRESENTER_H
|
|
#define LEGOPALETTEPRESENTER_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxvideopresenter.h"
|
|
|
|
// VTABLE 0x100d9aa0
|
|
// SIZE 0x68
|
|
class LegoPalettePresenter : public MxVideoPresenter
|
|
{
|
|
public:
|
|
LegoPalettePresenter();
|
|
virtual ~LegoPalettePresenter(); // vtable+0x0
|
|
|
|
// OFFSET: LEGO1 0x10079f30
|
|
inline const char *ClassName() const override // vtable+0xc
|
|
{
|
|
// 0x100f061c
|
|
return "LegoPalettePresenter";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10079f40
|
|
inline MxBool IsA(const char *name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, ClassName()) || MxVideoPresenter::IsA(name);
|
|
}
|
|
|
|
private:
|
|
void Init();
|
|
|
|
undefined4 m_unk64;
|
|
};
|
|
|
|
|
|
#endif // LEGOPALETTEPRESENTER_H
|