isle-portable/LEGO1/mxdsactionlist.h

32 lines
616 B
C
Raw Normal View History

#ifndef MXDSACTIONLIST_H
#define MXDSACTIONLIST_H
#include "decomp.h"
#include "mxlist.h"
class MxDSAction;
// VTABLE 0x100dcea8 TEMPLATE
// class MxCollection<MxDSAction *>
// VTABLE 0x100dcec0 TEMPLATE
// class MxList<MxDSAction *>
// VTABLE 0x100dced8
// SIZE 0x1c
2023-10-24 19:38:27 -04:00
class MxDSActionList : public MxList<MxDSAction*> {
public:
2023-10-24 19:38:27 -04:00
MxDSActionList() { this->m_unk18 = 0; }
virtual MxS8 Compare(MxDSAction*, MxDSAction*) override; // vtable+0x14
2023-10-24 19:38:27 -04:00
static void Destroy(MxDSAction* p_action);
private:
2023-10-24 19:38:27 -04:00
undefined m_unk18;
};
typedef MxListCursorChild<MxDSAction*> MxDSActionListCursor;
#endif // MXDSACTIONLIST_H