mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
4cc6b9b8ec
* Implement Score * Update mxomni.cpp Fix case of OFFSET comment. * Fix DeleteObjects * Apply changes (see comment) --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
33 lines
516 B
C++
33 lines
516 B
C++
#include "legocontrolmanager.h"
|
|
|
|
// OFFSET: LEGO1 0x10028520 STUB
|
|
LegoControlManager::LegoControlManager()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10028d60 STUB
|
|
LegoControlManager::~LegoControlManager()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10029600 STUB
|
|
MxResult LegoControlManager::Tickle()
|
|
{
|
|
// TODO
|
|
|
|
return 0;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10028e10 STUB
|
|
void LegoControlManager::Register(MxCore *p_listener)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10028ea0 STUB
|
|
void LegoControlManager::Unregister(MxCore *p_listener)
|
|
{
|
|
// TODO
|
|
}
|