mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-26 17:46:38 -05:00
Match a few methods (#270)
* match a few misc methods * Update legonavcontroller.h --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
parent
42a82794a8
commit
33dcb139b7
4 changed files with 10 additions and 13 deletions
|
@ -1,5 +1,6 @@
|
||||||
#include "legonavcontroller.h"
|
#include "legonavcontroller.h"
|
||||||
|
|
||||||
|
#include "legoinputmanager.h"
|
||||||
#include "legoomni.h"
|
#include "legoomni.h"
|
||||||
#include "legoutil.h"
|
#include "legoutil.h"
|
||||||
#include "legovideomanager.h"
|
#include "legovideomanager.h"
|
||||||
|
@ -106,18 +107,14 @@ LegoNavController::LegoNavController()
|
||||||
MxTimer* timer = Timer();
|
MxTimer* timer = Timer();
|
||||||
this->m_time = timer->GetTime();
|
this->m_time = timer->GetTime();
|
||||||
|
|
||||||
// TODO: InputManager()
|
InputManager()->Register(this);
|
||||||
// LegoInputManager* inputManager = InputManager();
|
|
||||||
// inputManager->Register(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: InputManager()
|
|
||||||
// OFFSET: LEGO1 0x10054c30
|
// OFFSET: LEGO1 0x10054c30
|
||||||
// LegoNavController::~LegoNavController()
|
LegoNavController::~LegoNavController()
|
||||||
// {
|
{
|
||||||
// LegoInputManager* inputManager = InputManager();
|
InputManager()->UnRegister(this);
|
||||||
// inputManager->UnRegister(this);
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x10054ca0
|
// OFFSET: LEGO1 0x10054ca0
|
||||||
void LegoNavController::SetControlMax(int p_hMax, int p_vMax)
|
void LegoNavController::SetControlMax(int p_hMax, int p_vMax)
|
||||||
|
|
|
@ -37,7 +37,7 @@ class LegoNavController : public MxCore {
|
||||||
);
|
);
|
||||||
|
|
||||||
LegoNavController();
|
LegoNavController();
|
||||||
// virtual ~LegoNavController(); // vtable+0x0
|
virtual ~LegoNavController() override; // vtable+0x0
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x10054b80
|
// OFFSET: LEGO1 0x10054b80
|
||||||
inline const char* ClassName() const override // vtable+0xc
|
inline const char* ClassName() const override // vtable+0xc
|
||||||
|
|
|
@ -31,8 +31,8 @@ MxCore* LegoObjectFactory::Create(const char* p_name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x1000fb30 STUB
|
// OFFSET: LEGO1 0x1000fb30
|
||||||
void LegoObjectFactory::Destroy(MxCore* p_object)
|
void LegoObjectFactory::Destroy(MxCore* p_object)
|
||||||
{
|
{
|
||||||
// TODO
|
delete p_object;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ Pizza::~Pizza()
|
||||||
TickleManager()->UnregisterClient(this);
|
TickleManager()->UnregisterClient(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100388a0
|
// OFFSET: LEGO1 0x100388a0 STUB
|
||||||
MxResult Pizza::Tickle()
|
MxResult Pizza::Tickle()
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
|
|
Loading…
Reference in a new issue