mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-21 07:11:16 +00:00
MxWavePresenter: add members to match size
This commit is contained in:
parent
f1510883a3
commit
fbc44a00ba
@ -1,7 +1,18 @@
|
|||||||
#include "mxwavepresenter.h"
|
#include "mxwavepresenter.h"
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100b1ad0 STUB
|
#include "decomp.h"
|
||||||
|
|
||||||
|
DECOMP_STATIC_ASSERT(sizeof(MxWavePresenter) == 108);
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b1ad0
|
||||||
void MxWavePresenter::Init()
|
void MxWavePresenter::Init()
|
||||||
{
|
{
|
||||||
// TODO
|
m_unk54 = 0;
|
||||||
|
m_unk58 = 0;
|
||||||
|
m_unk5c = 0;
|
||||||
|
m_unk60 = 0;
|
||||||
|
m_unk64 = 0;
|
||||||
|
m_unk65 = 0;
|
||||||
|
m_unk66 = 0;
|
||||||
|
m_unk68 = 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,14 +3,28 @@
|
|||||||
|
|
||||||
#include "mxsoundpresenter.h"
|
#include "mxsoundpresenter.h"
|
||||||
|
|
||||||
|
#include "decomp.h"
|
||||||
|
|
||||||
// VTABLE 0x100d49a8
|
// VTABLE 0x100d49a8
|
||||||
// SIZE 0x6c
|
// SIZE 0x6c
|
||||||
class MxWavePresenter : public MxSoundPresenter
|
class MxWavePresenter : public MxSoundPresenter
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
void Init();
|
void Init();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
MxWavePresenter() {
|
||||||
|
Init();
|
||||||
|
}
|
||||||
|
undefined4 m_unk54;
|
||||||
|
undefined4 m_unk58;
|
||||||
|
undefined4 m_unk5c;
|
||||||
|
undefined4 m_unk60;
|
||||||
|
undefined m_unk64;
|
||||||
|
undefined m_unk65;
|
||||||
|
undefined m_unk66;
|
||||||
|
undefined m_unk67;
|
||||||
|
undefined m_unk68;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MXWAVEPRESENTER_H
|
#endif // MXWAVEPRESENTER_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user