mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-16 21:11:15 +00:00
MxMusicPresenter: ClassName, IsA, ctor, Init (#145)
This commit is contained in:
parent
dc869c441c
commit
5b7954a97b
@ -1,7 +1,12 @@
|
|||||||
#include "mxmusicpresenter.h"
|
#include "mxmusicpresenter.h"
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100c22c0 STUB
|
// OFFSET: LEGO1 0x100c22c0
|
||||||
MxMusicPresenter::MxMusicPresenter()
|
MxMusicPresenter::MxMusicPresenter()
|
||||||
{
|
{
|
||||||
// TODO
|
Init();
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100c2540
|
||||||
|
void MxMusicPresenter::Init()
|
||||||
|
{
|
||||||
}
|
}
|
||||||
@ -7,7 +7,23 @@
|
|||||||
class MxMusicPresenter : public MxAudioPresenter
|
class MxMusicPresenter : public MxAudioPresenter
|
||||||
{
|
{
|
||||||
public:
|
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();
|
MxMusicPresenter();
|
||||||
|
|
||||||
|
private:
|
||||||
|
void Init();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MXMUSICPRESENTER_H
|
#endif // MXMUSICPRESENTER_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user