2023-09-17 00:18:56 -04:00
|
|
|
#ifndef MXPRESENTERLIST_H
|
|
|
|
#define MXPRESENTERLIST_H
|
|
|
|
|
|
|
|
#include "mxlist.h"
|
|
|
|
|
|
|
|
class MxPresenter;
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d62f0
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxPtrList<MxPresenter>
|
2023-09-17 00:18:56 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6308
|
2023-09-17 00:18:56 -04:00
|
|
|
// SIZE 0x18
|
2023-11-19 07:23:30 -05:00
|
|
|
class MxPresenterList : public MxPtrList<MxPresenter> {
|
2023-09-17 00:18:56 -04:00
|
|
|
public:
|
2023-11-19 07:23:30 -05:00
|
|
|
virtual MxS8 Compare(MxPresenter*, MxPresenter*) override; // vtable+0x14
|
2023-09-17 00:18:56 -04:00
|
|
|
};
|
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
typedef MxListCursorChildChild<MxPresenter*> MxPresenterListCursor;
|
2023-09-19 23:00:34 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6350
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxCollection<MxPresenter *>
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6368
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxList<MxPresenter *>
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-09-17 00:18:56 -04:00
|
|
|
#endif // MXPRESENTERLIST_H
|