mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-22 16:04:17 +00:00

* Push changes * Update legoworld.cpp * Update legoworld.cpp * Minor style fixes --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
40 lines
587 B
C++
40 lines
587 B
C++
#include "legocontrolmanager.h"
|
|
|
|
// STUB: LEGO1 0x10028520
|
|
LegoControlManager::LegoControlManager()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10028d60
|
|
LegoControlManager::~LegoControlManager()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10028df0
|
|
void LegoControlManager::FUN_10028df0(MxPresenterList* p_presenterList)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10028e10
|
|
void LegoControlManager::Register(MxCore* p_listener)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10028ea0
|
|
void LegoControlManager::Unregister(MxCore* p_listener)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10029600
|
|
MxResult LegoControlManager::Tickle()
|
|
{
|
|
// TODO
|
|
|
|
return 0;
|
|
}
|