2023-09-20 16:36:15 -04:00
|
|
|
#ifndef MXDSACTIONLIST_H
|
|
|
|
#define MXDSACTIONLIST_H
|
|
|
|
|
|
|
|
#include "decomp.h"
|
|
|
|
#include "mxlist.h"
|
|
|
|
|
|
|
|
class MxDSAction;
|
|
|
|
|
|
|
|
// VTABLE 0x100dced8
|
|
|
|
// 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-09 10:52:58 -05:00
|
|
|
virtual MxS8 Compare(MxDSAction*, MxDSAction*) override; // +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-10-02 09:51:43 -04:00
|
|
|
typedef MxListCursorChild<MxDSAction*> MxDSActionListCursor;
|
2023-09-20 16:36:15 -04:00
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
// OFFSET: LEGO1 0x100c9cc0 TEMPLATE
|
|
|
|
// MxListParent<MxDSAction *>::Compare
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
// OFFSET: LEGO1 0x100c9d20 TEMPLATE
|
|
|
|
// MxListParent<MxDSAction *>::Destroy
|
2023-09-29 14:40:46 -04:00
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c9d30 TEMPLATE
|
2023-10-02 09:51:43 -04:00
|
|
|
// MxList<MxDSAction *>::~MxList<MxDSAction *>
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-09-20 16:36:15 -04:00
|
|
|
#endif // MXDSACTIONLIST_H
|