Stub LegoState::Vtable0x14 for Act3State

This commit is contained in:
Anonymous Maarten 2023-06-30 08:09:36 +02:00
parent 5f331e1b93
commit a3b88cf487
2 changed files with 8 additions and 1 deletions

View File

@ -4,3 +4,8 @@
LegoState::~LegoState() LegoState::~LegoState()
{ {
} }
// OFFSET: LEGO1 0x10005f90
MxBool LegoState::VTable0x14() {
return TRUE;
}

View File

@ -11,7 +11,7 @@ class LegoState : public MxCore
// OFFSET: LEGO1 0x100060d0 // OFFSET: LEGO1 0x100060d0
inline virtual const char *ClassName() const override // vtable+0x0c inline virtual const char *ClassName() const override // vtable+0x0c
{ {
// 0x100f01b8 // 0x100f01b8
return "LegoState"; return "LegoState";
} }
@ -22,6 +22,8 @@ class LegoState : public MxCore
return !strcmp(name, LegoState::ClassName()) || MxCore::IsA(name); return !strcmp(name, LegoState::ClassName()) || MxCore::IsA(name);
} }
virtual MxBool VTable0x14();
}; };
#endif // LEGOSTATE_H #endif // LEGOSTATE_H