This commit is contained in:
Misha 2023-12-26 18:58:57 -05:00
parent d11bd68d46
commit 8c228e983b
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8
3 changed files with 8 additions and 8 deletions

View File

@ -85,8 +85,7 @@ void LegoEntityPresenter::RepeatingTickle()
// FUNCTION: LEGO1 0x10053730 // FUNCTION: LEGO1 0x10053730
void LegoEntityPresenter::SetBackendLocation(Vector3Data& p_location, Vector3Data& p_direction, Vector3Data& p_up) void LegoEntityPresenter::SetBackendLocation(Vector3Data& p_location, Vector3Data& p_direction, Vector3Data& p_up)
{ {
if (m_objectBackend) if (m_objectBackend) {
{
m_objectBackend->SetLocation(p_location, p_direction, p_up, TRUE); m_objectBackend->SetLocation(p_location, p_direction, p_up, TRUE);
} }
} }

View File

@ -36,6 +36,7 @@ class LegoEntityPresenter : public MxCompositePresenter {
private: private:
void Destroy(MxBool p_fromDestructor); void Destroy(MxBool p_fromDestructor);
protected: protected:
LegoEntity* m_objectBackend; // 0x4c LegoEntity* m_objectBackend; // 0x4c
}; };

View File

@ -44,17 +44,17 @@ void LegoWorldPresenter::ReadyTickle()
m_currentTickleState = TickleState_Starting; m_currentTickleState = TickleState_Starting;
} }
// STUB: LEGO1 0x10067a70
void LegoWorldPresenter::VTable0x60(MxPresenter* p_presenter)
{
}
// STUB: LEGO1 0x10066ac0 // STUB: LEGO1 0x10066ac0
void LegoWorldPresenter::StartingTickle() void LegoWorldPresenter::StartingTickle()
{ {
} }
// FUNCTION: LEGO1 0x10067b00 // STUB: LEGO1 0x10067a70
void LegoWorldPresenter::VTable0x60(MxPresenter* p_presenter)
{
}
// STUB: LEGO1 0x10067b00
void LegoWorldPresenter::ParseExtra() void LegoWorldPresenter::ParseExtra()
{ {
} }