Files
isle/LEGO1/lego/legoomni/include/racecar.h
jonschz 3e6d789324 Add all BETA10 ClassName() functions and vtables (#1258)
* Add all BETA10 `ClassName()` functions and vtables

* Run formatter, fix copy error

* Fix copy error

* Add BETA10 library functions

---------

Co-authored-by: jonschz <jonschz@users.noreply.github.com>
2024-12-22 08:13:34 -07:00

41 lines
898 B
C++

#ifndef RACECAR_H
#define RACECAR_H
#include "decomp.h"
#include "islepathactor.h"
// VTABLE: LEGO1 0x100d6918
// VTABLE: BETA10 0x101bf878
// SIZE 0x164
class RaceCar : public IslePathActor {
public:
RaceCar();
~RaceCar() override; // vtable+0x00
// FUNCTION: LEGO1 0x10028270
// FUNCTION: BETA10 0x100f1150
const char* ClassName() const override // vtable+0x0c
{
// STRING: LEGO1 0x100f03e0
return "RaceCar";
}
// FUNCTION: LEGO1 0x10028280
MxBool IsA(const char* p_name) const override // vtable+0x10
{
return !strcmp(p_name, RaceCar::ClassName()) || IslePathActor::IsA(p_name);
}
MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18
MxLong HandleClick() override; // vtable+0xcc
// SYNTHETIC: LEGO1 0x10028400
// RaceCar::`scalar deleting destructor'
private:
// TODO: RaceCar fields
undefined m_unk0x160[4];
};
#endif // RACECAR_H