mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Fix pizza constructor (#149)
* Pizza: fix type of m_unk98 * Fix pizza constructor * Match Pizza::Pizza * Use undefined type --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
#ifndef PIZZA_H
|
||||
#define PIZZA_H
|
||||
|
||||
#include "decomp.h"
|
||||
|
||||
#include "isleactor.h"
|
||||
#include "mxcore.h"
|
||||
#include "mxomni.h"
|
||||
@@ -29,16 +31,17 @@ public:
|
||||
{
|
||||
return !strcmp(name, Pizza::ClassName()) || IsleActor::IsA(name);
|
||||
}
|
||||
|
||||
private:
|
||||
MxS32 m_unk78;
|
||||
MxS32 m_unk7c;
|
||||
MxS32 m_unk80;
|
||||
MxS32 m_unk84;
|
||||
MxS32 m_unk88;
|
||||
MxS32 m_unk8c;
|
||||
MxU32 m_unk90;
|
||||
MxS32 m_unk94;
|
||||
MxS32 m_unk98;
|
||||
undefined4 m_unk78;
|
||||
undefined4 m_unk7c;
|
||||
undefined4 m_unk80;
|
||||
undefined4 m_unk84;
|
||||
undefined4 m_unk88;
|
||||
undefined4 m_unk8c;
|
||||
undefined4 m_unk90;
|
||||
undefined4 m_unk94;
|
||||
undefined m_unk98;
|
||||
};
|
||||
|
||||
#endif // PIZZA_H
|
||||
|
Reference in New Issue
Block a user