mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-22 15:51:16 +00:00
MxVideoPresenter: add members to match size
This commit is contained in:
parent
08620af153
commit
07bf8e19d7
@ -1 +1,8 @@
|
|||||||
#include "mxvideopresenter.h"
|
#include "mxvideopresenter.h"
|
||||||
|
|
||||||
|
DECOMP_STATIC_ASSERT(sizeof(MxVideoPresenter) == 100);
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b2760 STUB
|
||||||
|
void MxVideoPresenter::Init() {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|||||||
@ -3,12 +3,17 @@
|
|||||||
|
|
||||||
#include "mxmediapresenter.h"
|
#include "mxmediapresenter.h"
|
||||||
|
|
||||||
|
#include "decomp.h"
|
||||||
|
|
||||||
class MxVideoPresenter : public MxMediaPresenter
|
class MxVideoPresenter : public MxMediaPresenter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
MxVideoPresenter() {
|
||||||
|
Init();
|
||||||
|
}
|
||||||
// OFFSET: LEGO1 0x1000c820
|
// OFFSET: LEGO1 0x1000c820
|
||||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||||
{
|
{
|
||||||
// 0x100f0760
|
// 0x100f0760
|
||||||
return "MxVideoPresenter";
|
return "MxVideoPresenter";
|
||||||
}
|
}
|
||||||
@ -18,6 +23,15 @@ class MxVideoPresenter : public MxMediaPresenter
|
|||||||
{
|
{
|
||||||
return !strcmp(name, MxVideoPresenter::ClassName()) || MxMediaPresenter::IsA(name);
|
return !strcmp(name, MxVideoPresenter::ClassName()) || MxMediaPresenter::IsA(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Init();
|
||||||
|
|
||||||
|
undefined4 m_unk50;
|
||||||
|
undefined4 m_unk54;
|
||||||
|
undefined4 m_unk58;
|
||||||
|
short m_unk5c;
|
||||||
|
unsigned char m_flags;
|
||||||
|
int m_unk60;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MXVIDEOPRESENTER_H
|
#endif // MXVIDEOPRESENTER_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user