mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Fix Annotations and LegoAnimActor class structure. (#710)
* Fix size annotations for legoomni
Fix structure and add placeholder annotations for LegoAnimActor and subclasses
* Fix LegoCarRaceActor constructor
Fix function name in LegoRaceCar
* Add size assertions for legoomni and fix sizes
* Various style fixes
* Use other marker so vtable.py doesn't compare
* Revert "Use other marker so vtable.py doesn't compare"
This reverts commit 608985cd73
.
* Fix copy/paste error
* Remove stale comment.
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
@@ -3,9 +3,17 @@
|
||||
|
||||
#include "legocarraceactor.h"
|
||||
|
||||
// VTABLE: LEGO1 0x100da240
|
||||
class LegoJetskiRaceActor : public LegoCarRaceActor {
|
||||
/*
|
||||
VTABLE: LEGO1 0x100da208 LegoCarRaceActor
|
||||
VTABLE: LEGO1 0x100da228 LegoRaceActor
|
||||
VTABLE: LEGO1 0x100da230 LegoAnimActor
|
||||
VTABLE: LEGO1 0x100da240 LegoPathActor
|
||||
*/
|
||||
// SIZE 0x1a8
|
||||
class LegoJetskiRaceActor : public virtual LegoCarRaceActor {
|
||||
public:
|
||||
LegoJetskiRaceActor();
|
||||
|
||||
// FUNCTION: LEGO1 0x10081d80
|
||||
inline const char* ClassName() const override // vtable+0x0c
|
||||
{
|
||||
@@ -23,6 +31,7 @@ public:
|
||||
void VTable0x70(float p_float) override; // vtable+0x70
|
||||
void VTable0x98() override; // vtable+0x98
|
||||
void VTable0x9c() override; // vtable+0x9c
|
||||
void VTable0x1c() override; // vtable+0x1c
|
||||
|
||||
// SYNTHETIC: LEGO1 0x10081d40
|
||||
// LegoJetskiRaceActor::`scalar deleting destructor'
|
||||
|
Reference in New Issue
Block a user