Add call to parent

This commit is contained in:
Christian Semmler 2024-04-08 08:17:56 -04:00
parent 87f1e2144a
commit a4f0c8ca66
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ class LegoPathActor : public LegoActor {
return !strcmp(p_name, LegoPathActor::ClassName()) || LegoActor::IsA(p_name);
}
void ParseAction(char*) override; // vtable+0x20
void ParseAction(char* p_extra) override; // vtable+0x20
virtual void VTable0x68(Mx3DPointFloat&, Mx3DPointFloat&, Mx3DPointFloat&); // vtable+0x68
virtual void VTable0x6c(); // vtable+0x6c
virtual void VTable0x70(float p_float); // vtable+0x70

View File

@ -101,9 +101,9 @@ void LegoPathActor::VTable0x68(Mx3DPointFloat&, Mx3DPointFloat&, Mx3DPointFloat&
}
// STUB: LEGO1 0x1002f020
void LegoPathActor::ParseAction(char*)
void LegoPathActor::ParseAction(char* p_extra)
{
// TODO
LegoActor::ParseAction(p_extra);
}
// STUB: LEGO1 0x1002f1b0