mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
MxMusicPresenter: ClassName, IsA, ctor, Init (#145)
This commit is contained in:
parent
dc869c441c
commit
5b7954a97b
2 changed files with 23 additions and 2 deletions
|
@ -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…
Reference in a new issue