mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -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 "legoinputmanager.h"
|
||||
#include "legoomni.h"
|
||||
#include "legoutil.h"
|
||||
#include "legovideomanager.h"
|
||||
|
@ -106,18 +107,14 @@ LegoNavController::LegoNavController()
|
|||
MxTimer* timer = Timer();
|
||||
this->m_time = timer->GetTime();
|
||||
|
||||
// TODO: InputManager()
|
||||
// LegoInputManager* inputManager = InputManager();
|
||||
// inputManager->Register(this);
|
||||
InputManager()->Register(this);
|
||||
}
|
||||
|
||||
// TODO: InputManager()
|
||||
// OFFSET: LEGO1 0x10054c30
|
||||
// LegoNavController::~LegoNavController()
|
||||
// {
|
||||
// LegoInputManager* inputManager = InputManager();
|
||||
// inputManager->UnRegister(this);
|
||||
// }
|
||||
LegoNavController::~LegoNavController()
|
||||
{
|
||||
InputManager()->UnRegister(this);
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x10054ca0
|
||||
void LegoNavController::SetControlMax(int p_hMax, int p_vMax)
|
||||
|
|
|
@ -37,7 +37,7 @@ class LegoNavController : public MxCore {
|
|||
);
|
||||
|
||||
LegoNavController();
|
||||
// virtual ~LegoNavController(); // vtable+0x0
|
||||
virtual ~LegoNavController() override; // vtable+0x0
|
||||
|
||||
// OFFSET: LEGO1 0x10054b80
|
||||
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)
|
||||
{
|
||||
// TODO
|
||||
delete p_object;
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ Pizza::~Pizza()
|
|||
TickleManager()->UnregisterClient(this);
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100388a0
|
||||
// OFFSET: LEGO1 0x100388a0 STUB
|
||||
MxResult Pizza::Tickle()
|
||||
{
|
||||
// TODO
|
||||
|
|
Loading…
Reference in a new issue