Order functions

This commit is contained in:
Christian Semmler 2023-10-23 10:05:10 -04:00
parent 4072a73141
commit 83db9b87ad

View File

@ -5,28 +5,16 @@
DECOMP_SIZE_ASSERT(LegoPathPresenter, 0x54);
// OFFSET: LEGO1 0x10044ab0
void LegoPathPresenter::Init() {}
// OFFSET: LEGO1 0x100448d0
LegoPathPresenter::LegoPathPresenter()
{
Init();
}
// OFFSET: LEGO1 0x10044d40
void LegoPathPresenter::RepeatingTickle()
// OFFSET: LEGO1 0x10044ab0
void LegoPathPresenter::Init()
{
if (this->m_action->GetDuration() == -1)
return;
EndAction();
}
// OFFSET: LEGO1 0x10044d60 STUB
void LegoPathPresenter::ParseExtra()
{
// TODO
}
// OFFSET: LEGO1 0x10044b40
@ -62,3 +50,18 @@ void LegoPathPresenter::Destroy()
{
Destroy(FALSE);
}
// OFFSET: LEGO1 0x10044d40
void LegoPathPresenter::RepeatingTickle()
{
if (this->m_action->GetDuration() == -1)
return;
EndAction();
}
// OFFSET: LEGO1 0x10044d60 STUB
void LegoPathPresenter::ParseExtra()
{
// TODO
}