2023-06-29 04:10:08 -04:00
|
|
|
#ifndef MXNEXTACTIONDATASTART_H
|
|
|
|
#define MXNEXTACTIONDATASTART_H
|
|
|
|
|
|
|
|
#include "mxcore.h"
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc9a0
|
2023-11-05 10:25:38 -05:00
|
|
|
// SIZE 0x14
|
2023-11-04 09:47:35 -04:00
|
|
|
class MxNextActionDataStart : public MxCore {
|
|
|
|
public:
|
2023-11-05 10:25:38 -05:00
|
|
|
// inlined constructor at 0x100c1847
|
2023-12-13 05:48:14 -05:00
|
|
|
inline MxNextActionDataStart(MxU32 p_objectId, MxS16 p_unk0x24, MxU32 p_data)
|
2023-11-05 10:25:38 -05:00
|
|
|
{
|
|
|
|
m_objectId = p_objectId;
|
2023-12-13 05:48:14 -05:00
|
|
|
m_unk0x24 = p_unk0x24;
|
2023-11-05 10:25:38 -05:00
|
|
|
m_data = p_data;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c1900
|
2024-02-01 15:42:10 -05:00
|
|
|
inline const char* ClassName() const override // vtable+0x0c
|
2023-11-04 09:47:35 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x101025a0
|
2023-11-04 09:47:35 -04:00
|
|
|
return "MxNextActionDataStart";
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c1910
|
2024-02-01 15:42:10 -05:00
|
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-11-04 09:47:35 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, MxNextActionDataStart::ClassName()) || MxCore::IsA(p_name);
|
2023-11-04 09:47:35 -04:00
|
|
|
}
|
2023-11-05 10:25:38 -05:00
|
|
|
|
2023-11-28 08:26:39 -05:00
|
|
|
inline MxU32 GetObjectId() const { return m_objectId; }
|
2023-12-13 05:48:14 -05:00
|
|
|
inline MxS16 GetUnknown24() const { return m_unk0x24; }
|
2023-12-25 13:32:01 -05:00
|
|
|
inline MxU32 GetData() const { return m_data; }
|
|
|
|
inline void SetData(MxU32 p_data) { m_data = p_data; }
|
2023-11-28 08:26:39 -05:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100c1990
|
|
|
|
// MxNextActionDataStart::`scalar deleting destructor'
|
|
|
|
|
2023-11-05 10:25:38 -05:00
|
|
|
private:
|
2023-12-25 13:32:01 -05:00
|
|
|
MxU32 m_objectId; // 0x08
|
|
|
|
MxS16 m_unk0x24; // 0x0c
|
|
|
|
MxU32 m_data; // 0x10
|
2023-11-04 09:47:35 -04:00
|
|
|
};
|
2023-06-29 04:10:08 -04:00
|
|
|
|
|
|
|
#endif // MXNEXTACTIONDATASTART_H
|