mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
18 lines
378 B
C++
18 lines
378 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);
|
|
}
|