mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 14:51:15 +00:00
Update types/add needed type in LegoPathActor for Pizza
Yes, this is a recommit because last time I pushed my cmake dir
This commit is contained in:
parent
baff2eeaa2
commit
0ab5da9055
@ -3,8 +3,8 @@
|
|||||||
// OFFSET: LEGO1 0x1001a200
|
// OFFSET: LEGO1 0x1001a200
|
||||||
IslePathActor::IslePathActor()
|
IslePathActor::IslePathActor()
|
||||||
{
|
{
|
||||||
// FIXME: doesnt match
|
this->m_pLegoWorld = NULL;
|
||||||
this->m_unk154 = FALSE;
|
this->m_unk13c = 0x40c00000;
|
||||||
this->m_fourcc = 0x3f800000;
|
this->m_fourcc = 0x3f800000;
|
||||||
this->m_unk158 = 0;
|
this->m_unk158 = 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
#define ISLEPATHACTOR_H
|
#define ISLEPATHACTOR_H
|
||||||
|
|
||||||
#include "legopathactor.h"
|
#include "legopathactor.h"
|
||||||
|
#include "legoworld.h"
|
||||||
#include "mxtypes.h"
|
#include "mxtypes.h"
|
||||||
|
|
||||||
// VTABLE 0x100d4398
|
// VTABLE 0x100d4398
|
||||||
@ -26,7 +27,7 @@ class IslePathActor : public LegoPathActor
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
MxBool m_unk154;
|
LegoWorld* m_pLegoWorld; // 0x154
|
||||||
MxS32 m_unk158;
|
MxS32 m_unk158;
|
||||||
MxS32 m_fourcc; // 0x15c
|
MxS32 m_fourcc; // 0x15c
|
||||||
};
|
};
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
#define LEGOPATHACTOR_H
|
#define LEGOPATHACTOR_H
|
||||||
|
|
||||||
#include "legoactor.h"
|
#include "legoactor.h"
|
||||||
|
#include "mxtypes.h"
|
||||||
|
|
||||||
// VTABLE 0x100d6e28
|
// VTABLE 0x100d6e28
|
||||||
// SIZE 0x154 (from inlined construction at 0x1000a346)
|
// SIZE 0x154 (from inlined construction at 0x1000a346)
|
||||||
@ -25,6 +26,8 @@ class LegoPathActor : public LegoActor
|
|||||||
return !strcmp(name, LegoPathActor::ClassName()) || LegoActor::IsA(name);
|
return !strcmp(name, LegoPathActor::ClassName()) || LegoActor::IsA(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: the types. Pizza needs this as public:
|
||||||
|
MxS32 m_unk13c;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // LEGOPATHACTOR_H
|
#endif // LEGOPATHACTOR_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user