2024-05-11 12:23:18 -04:00
|
|
|
#ifndef LEGOPATHSTRUCT_H
|
|
|
|
#define LEGOPATHSTRUCT_H
|
|
|
|
|
|
|
|
#include "decomp.h"
|
|
|
|
#include "mxatom.h"
|
|
|
|
#include "mxtypes.h"
|
|
|
|
|
|
|
|
// VTABLE: LEGO1 0x100d7d9c
|
|
|
|
// SIZE 0x0c
|
2024-05-11 13:55:28 -04:00
|
|
|
struct LegoPathStructBase {
|
2024-05-11 12:23:18 -04:00
|
|
|
public:
|
2024-05-11 12:57:07 -04:00
|
|
|
LegoPathStructBase() : m_name(NULL), m_unk0x08(0) {}
|
2024-05-11 12:23:18 -04:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10047420
|
|
|
|
virtual ~LegoPathStructBase()
|
|
|
|
{
|
2024-05-11 12:57:07 -04:00
|
|
|
if (m_name != NULL) {
|
|
|
|
delete[] m_name;
|
2024-05-11 12:23:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-11 12:57:07 -04:00
|
|
|
char* m_name; // 0x04
|
2024-05-11 12:23:18 -04:00
|
|
|
undefined4 m_unk0x08; // 0x08
|
|
|
|
};
|
|
|
|
|
|
|
|
// VTABLE: LEGO1 0x100d7da0
|
|
|
|
// SIZE 0x14
|
2024-05-11 13:55:28 -04:00
|
|
|
struct LegoPathStruct : public LegoPathStructBase {
|
2024-05-11 12:23:18 -04:00
|
|
|
public:
|
|
|
|
// FUNCTION: LEGO1 0x100473a0
|
|
|
|
LegoPathStruct() : m_unk0x0c(0) {}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10047470
|
|
|
|
~LegoPathStruct() override {}
|
|
|
|
|
|
|
|
void VTable0x04(undefined4, undefined4, undefined4); // vtable+0x04
|
|
|
|
|
2024-05-12 14:33:20 -04:00
|
|
|
inline void SetAtomId(const MxAtomId& p_atomId) { m_atomId = p_atomId; }
|
|
|
|
|
2024-05-11 12:23:18 -04:00
|
|
|
undefined4 m_unk0x0c; // 0x0c
|
|
|
|
MxAtomId m_atomId; // 0x10
|
|
|
|
};
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x10047440
|
|
|
|
// LegoPathStructBase::`scalar deleting destructor'
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x10047890
|
|
|
|
// LegoPathStruct::`vector deleting destructor'
|
|
|
|
|
|
|
|
#endif // LEGOPATHSTRUCT_H
|