2023-06-29 04:10:08 -04:00
|
|
|
#ifndef MXDSSELECTACTION_H
|
|
|
|
#define MXDSSELECTACTION_H
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "decomp.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxdsparallelaction.h"
|
2023-10-02 09:51:43 -04:00
|
|
|
#include "mxstringlist.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dcfc8
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0xb0
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxDSSelectAction : public MxDSParallelAction {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSSelectAction();
|
|
|
|
virtual ~MxDSSelectAction() override;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
void CopyFrom(MxDSSelectAction& p_dsSelectAction);
|
|
|
|
MxDSSelectAction& operator=(MxDSSelectAction& p_dsSelectAction);
|
2023-10-07 14:03:15 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100cb6f0
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x1010261c
|
2023-10-24 19:38:27 -04:00
|
|
|
return "MxDSSelectAction";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100cb700
|
2023-12-13 05:48:14 -05:00
|
|
|
inline virtual 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, MxDSSelectAction::ClassName()) || MxDSParallelAction::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
virtual MxU32 GetSizeOnDisk() override; // vtable+18;
|
2023-12-17 12:24:39 -05:00
|
|
|
virtual void Deserialize(MxU8** p_source, MxS16 p_unk0x24) override; // vtable+1c;
|
2023-12-13 05:48:14 -05:00
|
|
|
virtual MxDSAction* Clone() override; // vtable+2c;
|
2023-10-07 14:03:15 -04:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100cb840
|
|
|
|
// MxDSSelectAction::`scalar deleting destructor'
|
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxString m_unk0x9c;
|
|
|
|
MxStringList* m_unk0xac;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
2023-12-12 14:27:17 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100cbbd0
|
|
|
|
// MxStringListCursor::`scalar deleting destructor'
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100cbc40
|
|
|
|
// MxListCursor<MxString>::~MxListCursor<MxString>
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x100cbc90
|
|
|
|
// MxListCursor<MxString>::`scalar deleting destructor'
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100cbd00
|
|
|
|
// MxStringListCursor::~MxStringListCursor
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
#endif // MXDSSELECTACTION_H
|