2023-06-29 04:10:08 -04:00
|
|
|
#ifndef LEGOPATHACTOR_H
|
|
|
|
#define LEGOPATHACTOR_H
|
|
|
|
|
|
|
|
#include "legoactor.h"
|
2023-08-03 14:10:54 -04:00
|
|
|
#include "mxtypes.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100d6e28
|
|
|
|
// SIZE 0x154 (from inlined construction at 0x1000a346)
|
|
|
|
class LegoPathActor : public LegoActor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LegoPathActor();
|
|
|
|
|
|
|
|
virtual ~LegoPathActor() override;
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1000c430
|
|
|
|
inline const char *ClassName() const override // vtable+0xc
|
|
|
|
{
|
|
|
|
// 0x100f0114
|
|
|
|
return "LegoPathActor";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1000c440
|
|
|
|
inline MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, LegoPathActor::ClassName()) || LegoActor::IsA(name);
|
|
|
|
}
|
2023-09-10 08:01:39 -04:00
|
|
|
protected:
|
|
|
|
// TODO: the types
|
2023-08-03 14:10:54 -04:00
|
|
|
undefined unk78[0xc4];
|
2023-09-10 08:01:39 -04:00
|
|
|
MxFloat m_unk13c;
|
|
|
|
MxS32 m_unk140;
|
|
|
|
MxS32 m_unk144;
|
|
|
|
undefined m_unk148;
|
|
|
|
MxS32 m_unk14c;
|
|
|
|
MxFloat m_unk150;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOPATHACTOR_H
|