mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
bc5ca621a4
* Add ncc tool * Add symlink * Fixes * Try this * Try this * Try this * Try this * Add include path * Update style * Update style * Add more rules * Fix style * Update styles * Fix name parameter * Fix MxParam p * Fix m_unk0x pattern * Allow 4 digits for relative hex * Add missing offset * Fix some parameters * Fix some vtables * Fix more vtables * Update rules, fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * Fix last issue * Update readme * Update readme * Update CONTRIBUTING.md * Fix annotations * Rename * Update CONTRIBUTING.md * Update README.md
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
#ifndef MXDSACTIONLIST_H
|
|
#define MXDSACTIONLIST_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxlist.h"
|
|
|
|
class MxDSAction;
|
|
|
|
// VTABLE: LEGO1 0x100dcea8
|
|
// class MxCollection<MxDSAction *>
|
|
|
|
// VTABLE: LEGO1 0x100dcec0
|
|
// class MxList<MxDSAction *>
|
|
|
|
// VTABLE: LEGO1 0x100dced8
|
|
// SIZE 0x1c
|
|
class MxDSActionList : public MxList<MxDSAction*> {
|
|
public:
|
|
MxDSActionList() { this->m_unk0x18 = 0; }
|
|
|
|
virtual MxS8 Compare(MxDSAction*, MxDSAction*) override; // vtable+0x14
|
|
|
|
static void Destroy(MxDSAction* p_action);
|
|
|
|
private:
|
|
undefined m_unk0x18;
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100d7e68
|
|
// class MxListCursor<MxDSAction *>
|
|
|
|
// VTABLE: LEGO1 0x100d7e50
|
|
class MxDSActionListCursor : public MxListCursor<MxDSAction*> {
|
|
public:
|
|
MxDSActionListCursor(MxDSActionList* p_list) : MxListCursor<MxDSAction*>(p_list){};
|
|
};
|
|
|
|
// TEMPLATE: LEGO1 0x100c9cc0
|
|
// MxCollection<MxDSAction *>::Compare
|
|
|
|
// TEMPLATE: LEGO1 0x100c9d20
|
|
// MxCollection<MxDSAction *>::Destroy
|
|
|
|
// TEMPLATE: LEGO1 0x100c9d30
|
|
// MxList<MxDSAction *>::~MxList<MxDSAction *>
|
|
|
|
// SYNTHETIC: LEGO1 0x100c9e30
|
|
// MxCollection<MxDSAction *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x100c9ea0
|
|
// MxList<MxDSAction *>::`scalar deleting destructor'
|
|
|
|
#endif // MXDSACTIONLIST_H
|