mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-24 04:26:55 -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
@ -6,7 +6,19 @@ MxMusicPresenter::MxMusicPresenter()
|
|||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100c24e0
|
||||||
|
MxMusicPresenter::~MxMusicPresenter()
|
||||||
|
{
|
||||||
|
Destroy(TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100c2540
|
// OFFSET: LEGO1 0x100c2540
|
||||||
void MxMusicPresenter::Init()
|
void MxMusicPresenter::Init()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100c2550 STUB
|
||||||
|
void MxMusicPresenter::Destroy(MxBool)
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
@ -21,9 +21,11 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
MxMusicPresenter();
|
MxMusicPresenter();
|
||||||
|
virtual ~MxMusicPresenter() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void Init();
|
void Init();
|
||||||
|
void Destroy(MxBool);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MXMUSICPRESENTER_H
|
#endif // MXMUSICPRESENTER_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user