From 83db9b87ad65eb134ce7368bf9472ad563186fdc Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 23 Oct 2023 10:05:10 -0400 Subject: [PATCH] Order functions --- LEGO1/legopathpresenter.cpp | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/LEGO1/legopathpresenter.cpp b/LEGO1/legopathpresenter.cpp index 3ada2aa8..14f383ab 100644 --- a/LEGO1/legopathpresenter.cpp +++ b/LEGO1/legopathpresenter.cpp @@ -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 +}