mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-24 04:26:55 -04:00
MxMusicPresenter: ClassName, IsA, ctor, Init (#145)
This commit is contained in:
parent
dc869c441c
commit
5b7954a97b
@ -1,7 +1,12 @@
|
||||
#include "mxmusicpresenter.h"
|
||||
|
||||
// OFFSET: LEGO1 0x100c22c0 STUB
|
||||
// OFFSET: LEGO1 0x100c22c0
|
||||
MxMusicPresenter::MxMusicPresenter()
|
||||
{
|
||||
// TODO
|
||||
Init();
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c2540
|
||||
void MxMusicPresenter::Init()
|
||||
{
|
||||
}
|
@ -7,7 +7,23 @@
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user