1
0
Fork 0
mirror of https://github.com/isledecomp/isle.git synced 2025-03-24 21:50:18 -04:00

MxMusicPresenter dtor, stub destroy ()

* MxMusicPresenter dtor, stub destroy

* Fix destructor declaration

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
Joshua Peisach 2023-10-06 13:00:49 -04:00 committed by GitHub
parent 7f5198220c
commit 1217e4aa58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 @@ public:
}
MxMusicPresenter();
virtual ~MxMusicPresenter() override;
private:
void Init();
void Destroy(MxBool);
};
#endif // MXMUSICPRESENTER_H