mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 16:51:15 +00:00
27 lines
562 B
C++
27 lines
562 B
C++
#ifndef MXPRESENTERLIST_H
|
|
#define MXPRESENTERLIST_H
|
|
|
|
#include "mxlist.h"
|
|
|
|
class MxPresenter;
|
|
|
|
// VTABLE: LEGO1 0x100d62f0
|
|
// class MxPtrList<MxPresenter>
|
|
|
|
// VTABLE: LEGO1 0x100d6308
|
|
// SIZE 0x18
|
|
class MxPresenterList : public MxPtrList<MxPresenter> {
|
|
public:
|
|
virtual MxS8 Compare(MxPresenter*, MxPresenter*) override; // vtable+0x14
|
|
};
|
|
|
|
typedef MxListCursorChildChild<MxPresenter*> MxPresenterListCursor;
|
|
|
|
// VTABLE: LEGO1 0x100d6350
|
|
// class MxCollection<MxPresenter *>
|
|
|
|
// VTABLE: LEGO1 0x100d6368
|
|
// class MxList<MxPresenter *>
|
|
|
|
#endif // MXPRESENTERLIST_H
|