mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00

* MxMusicPresenter dtor, stub destroy * Fix destructor declaration --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
24 lines
347 B
C++
24 lines
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
|
|
} |