mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 03:31:15 +00:00
22 lines
526 B
C++
22 lines
526 B
C++
#ifndef MXCOMPOSITEPRESENTER_H
|
|
#define MXCOMPOSITEPRESENTER_H
|
|
|
|
#include "mxpresenter.h"
|
|
|
|
class MxCompositePresenter : public MxPresenter
|
|
{
|
|
public:
|
|
MxCompositePresenter();
|
|
virtual ~MxCompositePresenter(); // vtable+0x0
|
|
|
|
virtual long Notify(MxParam &p); // vtable+0x4, MxCore override
|
|
|
|
virtual long StartAction(MxStreamController *, MxDSAction *); // vtable+0x3c
|
|
virtual void EndAction(); // vtable+0x40
|
|
virtual void Enable(unsigned char); // vtable+0x54
|
|
|
|
// VTABLE 0x100dc618
|
|
};
|
|
|
|
#endif // MXCOMPOSITEPRESENTER_H
|