mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
d145f914c4
* Implement/match MxPresenter::StartAction * Update mxpoint32.h * Implement/match MxVideoManager::Tickle * Update mxlist.h * Update mxpresenter.cpp
29 lines
570 B
C++
29 lines
570 B
C++
#ifndef MXPRESENTERLIST_H
|
|
#define MXPRESENTERLIST_H
|
|
|
|
#include "mxlist.h"
|
|
|
|
class MxPresenter;
|
|
|
|
// Unclear what the purpose of this class is
|
|
// VTABLE 0x100d62f0
|
|
// SIZE 0x18
|
|
class MxPresenterListParent : public MxList<MxPresenter>
|
|
{
|
|
public:
|
|
MxPresenterListParent() {
|
|
m_customDestructor = Destroy;
|
|
}
|
|
};
|
|
|
|
// VTABLE 0x100d6308
|
|
// SIZE 0x18
|
|
class MxPresenterList : public MxPresenterListParent
|
|
{
|
|
public:
|
|
virtual MxS8 Compare(MxPresenter *, MxPresenter *); // +0x14
|
|
};
|
|
|
|
typedef MxListCursorChildChild<MxPresenter> MxPresenterListCursor;
|
|
|
|
#endif // MXPRESENTERLIST_H
|