mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
29 lines
607 B
C++
29 lines
607 B
C++
#ifndef MXMUSICPRESENTER_H
|
|
#define MXMUSICPRESENTER_H
|
|
|
|
#include "mxaudiopresenter.h"
|
|
|
|
// VTABLE 0x100dc9b8
|
|
class MxMusicPresenter : public MxAudioPresenter
|
|
{
|
|
public:
|
|
// OFFSET: LEGO1 0x100c23a0
|
|
inline virtual const char *ClassName() const override // vtable+0xc
|
|
{
|
|
// 0x10101e48
|
|
return "MxMusicPresenter";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100c23b0
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxMusicPresenter::ClassName()) || MxAudioPresenter::IsA(name);
|
|
}
|
|
|
|
MxMusicPresenter();
|
|
|
|
private:
|
|
void Init();
|
|
};
|
|
|
|
#endif // MXMUSICPRESENTER_H
|