mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
RaceCar destructor (#488)
* RaceCar destructor * Fixes --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
parent
88fd1e658d
commit
0a672d2146
1 changed files with 7 additions and 3 deletions
|
@ -1,17 +1,21 @@
|
|||
#include "racecar.h"
|
||||
|
||||
#include "legocontrolmanager.h"
|
||||
#include "legoomni.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(RaceCar, 0x164);
|
||||
|
||||
// FUNCTION: LEGO1 0x10028200
|
||||
RaceCar::RaceCar()
|
||||
{
|
||||
this->m_unk0x13c = 40.0;
|
||||
m_unk0x13c = 40.0;
|
||||
}
|
||||
|
||||
// STUB: LEGO1 0x10028420
|
||||
// FUNCTION: LEGO1 0x10028420
|
||||
RaceCar::~RaceCar()
|
||||
{
|
||||
// TODO
|
||||
ControlManager()->Unregister(this);
|
||||
VTable0xe4();
|
||||
}
|
||||
|
||||
// STUB: LEGO1 0x10028490
|
||||
|
|
Loading…
Reference in a new issue