MxMusicPresenter dtor, stub destroy

This commit is contained in:
Joshua Peisach 2023-10-06 11:15:12 -04:00
parent 1da1d291a8
commit 192d9e5d8a
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 14 additions and 0 deletions

View File

@ -6,7 +6,19 @@ MxMusicPresenter::MxMusicPresenter()
Init();
}
// OFFSET: LEGO1 0x100c24e0
MxMusicPresenter::~MxMusicPresenter()
{
Destroy(TRUE);
}
// OFFSET: LEGO1 0x100c2540
void MxMusicPresenter::Init()
{
}
// OFFSET: LEGO1 0x100c2550 STUB
void MxMusicPresenter::Destroy(MxBool)
{
// TODO
}

View File

@ -21,9 +21,11 @@ class MxMusicPresenter : public MxAudioPresenter
}
MxMusicPresenter();
~MxMusicPresenter();
private:
void Init();
void Destroy(MxBool);
};
#endif // MXMUSICPRESENTER_H