mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 01:17:55 -05:00
MxLoopingFlcPresenter ctor/half of Init (#158)
* MxLoopingFlcPresenter ctor/half of Init * MxLoopingFlcPresenter - finish Init, stub Destroy function, match dtor * Update mxloopingflcpresenter.cpp --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
parent
f9cd17e3dc
commit
62d953c6c3
2 changed files with 15 additions and 5 deletions
|
@ -4,20 +4,28 @@
|
|||
|
||||
DECOMP_SIZE_ASSERT(MxLoopingFlcPresenter, 0x6c);
|
||||
|
||||
// OFFSET: LEGO1 0x100b4310 STUB
|
||||
// OFFSET: LEGO1 0x100b4310
|
||||
MxLoopingFlcPresenter::MxLoopingFlcPresenter()
|
||||
{
|
||||
// TODO
|
||||
Init();
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b43b0 STUB
|
||||
MxLoopingFlcPresenter::~MxLoopingFlcPresenter()
|
||||
{
|
||||
// TODO
|
||||
Destroy(TRUE);
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b4410 STUB
|
||||
// OFFSET: LEGO1 0x100b4410
|
||||
void MxLoopingFlcPresenter::Init()
|
||||
{
|
||||
// TODO
|
||||
this->m_unk68 = 0;
|
||||
this->m_flags &= 0xfd;
|
||||
this->m_flags &= 0xfb;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b4432 STUB
|
||||
void MxLoopingFlcPresenter::Destroy(MxBool p_param)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@ class MxLoopingFlcPresenter : public MxFlcPresenter
|
|||
|
||||
private:
|
||||
void Init();
|
||||
void Destroy(MxBool);
|
||||
|
||||
undefined4 m_unk68;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue