Update legopathpresenter.cpp

This commit is contained in:
Misha 2024-01-12 16:55:26 -05:00
parent 76c6c34aa8
commit 0b1e078f2e
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8

View File

@ -12,17 +12,17 @@ LegoPathPresenter::LegoPathPresenter()
Init(); Init();
} }
// FUNCTION: LEGO1 0x10044ab0
void LegoPathPresenter::Init()
{
}
// FUNCTION: LEGO1 0x10044ac0 // FUNCTION: LEGO1 0x10044ac0
LegoPathPresenter::~LegoPathPresenter() LegoPathPresenter::~LegoPathPresenter()
{ {
Destroy(TRUE); Destroy(TRUE);
} }
// FUNCTION: LEGO1 0x10044ab0
void LegoPathPresenter::Init()
{
}
// FUNCTION: LEGO1 0x10044b40 // FUNCTION: LEGO1 0x10044b40
MxResult LegoPathPresenter::AddToManager() MxResult LegoPathPresenter::AddToManager()
{ {
@ -51,27 +51,6 @@ void LegoPathPresenter::Destroy(MxBool p_fromDestructor)
MxMediaPresenter::Destroy(FALSE); MxMediaPresenter::Destroy(FALSE);
} }
// FUNCTION: LEGO1 0x10044c10
void LegoPathPresenter::Destroy()
{
Destroy(FALSE);
}
// FUNCTION: LEGO1 0x10044d40
void LegoPathPresenter::RepeatingTickle()
{
if (this->m_action->GetDuration() == -1)
return;
EndAction();
}
// STUB: LEGO1 0x10044d60
void LegoPathPresenter::ParseExtra()
{
// TODO
}
// STUB: LEGO1 0x10044c20 // STUB: LEGO1 0x10044c20
void LegoPathPresenter::ReadyTickle() void LegoPathPresenter::ReadyTickle()
{ {
@ -92,3 +71,24 @@ void LegoPathPresenter::StreamingTickle()
m_subscriber->DestroyChunk(chunk); m_subscriber->DestroyChunk(chunk);
} }
} }
// FUNCTION: LEGO1 0x10044c10
void LegoPathPresenter::Destroy()
{
Destroy(FALSE);
}
// FUNCTION: LEGO1 0x10044d40
void LegoPathPresenter::RepeatingTickle()
{
if (this->m_action->GetDuration() == -1)
return;
EndAction();
}
// STUB: LEGO1 0x10044d60
void LegoPathPresenter::ParseExtra()
{
// TODO
}