2023-09-17 00:18:56 -04:00
|
|
|
#ifndef MXPRESENTERLIST_H
|
|
|
|
#define MXPRESENTERLIST_H
|
|
|
|
|
|
|
|
#include "mxlist.h"
|
|
|
|
|
|
|
|
class MxPresenter;
|
|
|
|
|
|
|
|
// Unclear what the purpose of this class is
|
|
|
|
// VTABLE 0x100d62f0
|
|
|
|
// SIZE 0x18
|
2023-10-02 09:51:43 -04:00
|
|
|
class MxPresenterListParent : public MxList<MxPresenter*>
|
2023-09-17 00:18:56 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
MxPresenterListParent() {
|
|
|
|
m_customDestructor = Destroy;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// VTABLE 0x100d6308
|
|
|
|
// SIZE 0x18
|
|
|
|
class MxPresenterList : public MxPresenterListParent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual MxS8 Compare(MxPresenter *, MxPresenter *); // +0x14
|
|
|
|
};
|
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
typedef MxListCursorChildChild<MxPresenter*> MxPresenterListCursor;
|
2023-09-19 23:00:34 -04:00
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
// OFFSET: LEGO1 0x1001cd20 TEMPLATE
|
|
|
|
// MxListParent<MxPresenter *>::Compare
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
// OFFSET: LEGO1 0x1001cd30 TEMPLATE
|
|
|
|
// MxListParent<MxPresenter *>::Destroy
|
2023-09-29 14:40:46 -04:00
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1001ce20 TEMPLATE
|
2023-10-02 09:51:43 -04:00
|
|
|
// MxList<MxPresenter *>::~MxList<MxPresenter *>
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-09-17 00:18:56 -04:00
|
|
|
#endif // MXPRESENTERLIST_H
|