mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
4c4dce1302
* MxBackgroundAudioManager additional functions * fix code style * MxBackgroundAudioManager::PlayMusic * match MxBackgroundAudioManager::Notify * MxBackgroundAudioManager::Notify * rename functions * Fixes --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
42 lines
746 B
C++
42 lines
746 B
C++
#include "mxcompositepresenter.h"
|
|
|
|
#include "decomp.h"
|
|
#include "mxnotificationmanager.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxCompositePresenter, 0x4c);
|
|
|
|
// OFFSET: LEGO1 0x100b60b0
|
|
MxCompositePresenter::MxCompositePresenter()
|
|
{
|
|
NotificationManager()->Register(this);
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100b6390
|
|
MxCompositePresenter::~MxCompositePresenter()
|
|
{
|
|
NotificationManager()->Unregister(this);
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100b67f0 STUB
|
|
void MxCompositePresenter::VTable0x58()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100b69b0 STUB
|
|
void MxCompositePresenter::VTable0x5c()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100b6b40 STUB
|
|
void MxCompositePresenter::VTable0x60(undefined4 p_unknown)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x1000caf0 STUB
|
|
void MxCompositePresenter::VTable0x64()
|
|
{
|
|
// TODO
|
|
}
|