mirror of
https://github.com/isledecomp/isle.git
synced 2025-03-24 21:50:18 -04:00
MxMusicPresenter dtor, stub destroy (#174)
* MxMusicPresenter dtor, stub destroy * Fix destructor declaration --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
parent
7f5198220c
commit
1217e4aa58
2 changed files with 14 additions and 0 deletions
|
@ -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
|
||||
}
|
|
@ -21,9 +21,11 @@ public:
|
|||
}
|
||||
|
||||
MxMusicPresenter();
|
||||
virtual ~MxMusicPresenter() override;
|
||||
|
||||
private:
|
||||
void Init();
|
||||
void Destroy(MxBool);
|
||||
};
|
||||
|
||||
#endif // MXMUSICPRESENTER_H
|
||||
|
|
Loading…
Add table
Reference in a new issue