mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
1217e4aa58
* MxMusicPresenter dtor, stub destroy * Fix destructor declaration --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
24 lines
No EOL
347 B
C++
24 lines
No EOL
347 B
C++
#include "mxmusicpresenter.h"
|
|
|
|
// OFFSET: LEGO1 0x100c22c0
|
|
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
|
|
} |