LegoFlcTexturePresenter init function

say that 5 times fast
This commit is contained in:
Joshua Peisach 2023-12-27 12:55:32 -05:00
parent 5a1ba02772
commit 9d5a7ed0a3
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 20 additions and 2 deletions

View File

@ -1,7 +1,16 @@
#include "legoflctexturepresenter.h"
// STUB: LEGO1 0x1005de80
DECOMP_SIZE_ASSERT(LegoFlcTexturePresenter, 0x70)
// FUNCTION: LEGO1 0x1005de80
LegoFlcTexturePresenter::LegoFlcTexturePresenter()
{
// TODO
Init();
}
// FUNCTION: LEGO1 0x1005df70
void LegoFlcTexturePresenter::Init()
{
this->m_unk0x68 = 0;
this->m_unk0x6c = 0;
}

View File

@ -1,6 +1,7 @@
#ifndef LEGOFLCTEXTUREPRESENTER_H
#define LEGOFLCTEXTUREPRESENTER_H
#include "decomp.h"
#include "mxflcpresenter.h"
// VTABLE: LEGO1 0x100d89e0
@ -15,6 +16,14 @@ class LegoFlcTexturePresenter : public MxFlcPresenter {
// GLOBAL: LEGO1 0x100f0634
return "LegoFlcTexturePresenter";
}
// MxFlcPresenter's ::IsA is used
private:
void Init();
undefined4 m_unk0x68;
undefined4 m_unk0x6c;
};
#endif // LEGOFLCTEXTUREPRESENTER_H