Match Pizza::Pizza

This commit is contained in:
Christian Semmler 2023-09-30 19:21:28 -04:00
parent 9bcfae462a
commit 60149fe6ed
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
#include "legoactor.h"
DECOMP_SIZE_ASSERT(LegoActor, 0x78)
// OFFSET: LEGO1 0x1002d110 STUB
LegoActor::LegoActor()
{
}

View File

@ -9,6 +9,8 @@
class LegoActor : public LegoEntity
{
public:
LegoActor();
// OFFSET: LEGO1 0x1002d210
inline virtual const char *ClassName() const override // vtable+0x0c
{

View File

@ -31,6 +31,7 @@ class Pizza : public IsleActor
{
return !strcmp(name, Pizza::ClassName()) || IsleActor::IsA(name);
}
private:
MxS32 m_unk78;
MxS32 m_unk7c;
@ -41,7 +42,6 @@ class Pizza : public IsleActor
MxU32 m_unk90;
MxS32 m_unk94;
undefined m_unk98;
undefined m_unk99[3];
};
#endif // PIZZA_H