2023-06-29 04:10:08 -04:00
|
|
|
#ifndef ISLEPATHACTOR_H
|
|
|
|
#define ISLEPATHACTOR_H
|
|
|
|
|
|
|
|
#include "legopathactor.h"
|
2023-08-03 14:10:54 -04:00
|
|
|
#include "legoworld.h"
|
|
|
|
#include "mxtypes.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100d4398
|
2023-08-03 14:10:54 -04:00
|
|
|
// SIZE 0x160
|
2023-06-29 04:10:08 -04:00
|
|
|
class IslePathActor : public LegoPathActor
|
|
|
|
{
|
2023-08-03 14:10:54 -04:00
|
|
|
public:
|
|
|
|
IslePathActor();
|
|
|
|
~IslePathActor();
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
// OFFSET: LEGO1 0x10002ea0
|
|
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
|
|
{
|
|
|
|
// 0x100f0104
|
|
|
|
return "IslePathActor";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x10002eb0
|
|
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, IslePathActor::ClassName()) || LegoPathActor::IsA(name);
|
|
|
|
}
|
2023-08-03 14:10:54 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
LegoWorld* m_pLegoWorld; // 0x154
|
|
|
|
MxFloat m_unk158;
|
|
|
|
MxFloat m_unk15c;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ISLEPATHACTOR_H
|