mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
22ac0b9296
* Add missing ClassName's and IsA's Exceptions: LegoAnimActor as it does something weird with a call to another private/inlined function(?) and RaceStandsEntity which seems to have two vtables * clang-format --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
31 lines
711 B
C++
31 lines
711 B
C++
#ifndef MXSTILLPRESENTER_H
|
|
#define MXSTILLPRESENTER_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxvideopresenter.h"
|
|
|
|
// VTABLE 0x100d7a38
|
|
// SIZE 0x6c
|
|
class MxStillPresenter : public MxVideoPresenter {
|
|
public:
|
|
// 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);
|
|
}
|
|
|
|
virtual void ParseExtra() override; // vtable+0x30
|
|
|
|
MxStillPresenter() { m_unk68 = 0; }
|
|
undefined4 m_unk64;
|
|
undefined4 m_unk68;
|
|
};
|
|
|
|
#endif // MXSTILLPRESENTER_H
|