2023-09-20 16:36:15 -04:00
|
|
|
#ifndef MXDSACTIONLIST_H
|
|
|
|
#define MXDSACTIONLIST_H
|
|
|
|
|
|
|
|
#include "decomp.h"
|
|
|
|
#include "mxlist.h"
|
|
|
|
|
|
|
|
class MxDSAction;
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dcea8
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxCollection<MxDSAction *>
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dcec0
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxList<MxDSAction *>
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dced8
|
2023-09-20 16:36:15 -04:00
|
|
|
// SIZE 0x1c
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxDSActionList : public MxList<MxDSAction*> {
|
2023-09-20 16:36:15 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSActionList() { this->m_unk18 = 0; }
|
2023-09-20 16:36:15 -04:00
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
virtual MxS8 Compare(MxDSAction*, MxDSAction*) override; // vtable+0x14
|
2023-09-20 16:36:15 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
static void Destroy(MxDSAction* p_action);
|
2023-09-20 16:36:15 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
undefined m_unk18;
|
2023-09-20 16:36:15 -04:00
|
|
|
};
|
|
|
|
|
2023-12-07 14:14:49 -05:00
|
|
|
// VTABLE: LEGO1 0x100d7e68
|
|
|
|
// class MxListCursor<MxDSAction *>
|
|
|
|
|
|
|
|
// VTABLE: LEGO1 0x100d7e50
|
|
|
|
class MxDSActionListCursor : public MxListCursor<MxDSAction*> {
|
|
|
|
public:
|
|
|
|
MxDSActionListCursor(MxDSActionList* p_list) : MxListCursor<MxDSAction*>(p_list){};
|
|
|
|
};
|
2023-09-20 16:36:15 -04:00
|
|
|
|
|
|
|
#endif // MXDSACTIONLIST_H
|