2023-06-29 04:10:08 -04:00
|
|
|
#ifndef LEGOEXTRAACTOR_H
|
|
|
|
#define LEGOEXTRAACTOR_H
|
|
|
|
|
|
|
|
#include "legoanimactor.h"
|
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
/*
|
|
|
|
VTABLE: LEGO1 0x100d6c00 LegoAnimActor
|
|
|
|
VTABLE: LEGO1 0x100d6c10 LegoPathActor
|
|
|
|
VTABLE: LEGO1 0x100d6cdc LegoExtraActor
|
|
|
|
*/
|
|
|
|
// SIZE 0x1dc
|
|
|
|
class LegoExtraActor : public virtual LegoAnimActor {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2024-03-22 21:30:58 -04:00
|
|
|
LegoExtraActor();
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1002b7a0
|
2024-01-29 16:17:17 -05:00
|
|
|
inline const char* ClassName() const override // vtable+0x0c
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f3204
|
2023-10-24 19:38:27 -04:00
|
|
|
return "LegoExtraActor";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1002b7c0
|
2023-12-13 05:48:14 -05:00
|
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, LegoExtraActor::ClassName()) || LegoAnimActor::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2024-03-22 21:30:58 -04:00
|
|
|
|
|
|
|
virtual MxResult FUN_1002aae0();
|
|
|
|
|
|
|
|
private:
|
|
|
|
undefined4 m_unk0x08; // 0x08
|
|
|
|
undefined m_unk0x0c; // 0x0c
|
|
|
|
undefined m_unk0x0d; // 0x0d
|
|
|
|
undefined m_unk0x0e; // 0x0e
|
|
|
|
undefined4 m_unk0x10; // 0x10
|
|
|
|
undefined m_unk0x14; // 0x14
|
|
|
|
MxMatrix m_unk0x18; // 0x18
|
|
|
|
undefined4 m_unk0x60; // 0x60
|
|
|
|
undefined4 m_unk0x64; // 0x64
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOEXTRAACTOR_H
|