mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
b7efd64ac1
* reccmp: Add ability to compare template instantiations * Add example of template instantiation comparison. * merge * Add template compare annotations for MxList instances * Bootstrap MxDSSelectAction, generalize MxList * Fix template annotations * Fix merge error * Fix merge error --------- Co-authored-by: Brendan Dougherty <brandougherty1@gmail.com>
37 lines
724 B
C++
37 lines
724 B
C++
#ifndef MXDSACTIONLIST_H
|
|
#define MXDSACTIONLIST_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxlist.h"
|
|
|
|
class MxDSAction;
|
|
|
|
// VTABLE 0x100dced8
|
|
// SIZE 0x1c
|
|
class MxDSActionList : public MxList<MxDSAction*>
|
|
{
|
|
public:
|
|
MxDSActionList() {
|
|
this->m_unk18 = 0;
|
|
}
|
|
|
|
virtual MxS8 Compare(MxDSAction *, MxDSAction *); // +0x14
|
|
|
|
static void Destroy(MxDSAction *p_action);
|
|
|
|
private:
|
|
undefined m_unk18;
|
|
};
|
|
|
|
typedef MxListCursorChild<MxDSAction*> MxDSActionListCursor;
|
|
|
|
// OFFSET: LEGO1 0x100c9cc0 TEMPLATE
|
|
// MxListParent<MxDSAction *>::Compare
|
|
|
|
// OFFSET: LEGO1 0x100c9d20 TEMPLATE
|
|
// MxListParent<MxDSAction *>::Destroy
|
|
|
|
// OFFSET: LEGO1 0x100c9d30 TEMPLATE
|
|
// MxList<MxDSAction *>::~MxList<MxDSAction *>
|
|
|
|
#endif // MXDSACTIONLIST_H
|