mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 23:01:16 +00:00
Fix size assertions
This commit is contained in:
parent
e378ad4224
commit
35382ac9e5
@ -1,7 +1,5 @@
|
||||
#include "bike.h"
|
||||
|
||||
#include "decomp.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(Bike, 0x164);
|
||||
|
||||
// OFFSET: LEGO1 0x10076670
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#ifndef BIKE_H
|
||||
#define BIKE_H
|
||||
|
||||
#include "decomp.h"
|
||||
#include "islepathactor.h"
|
||||
|
||||
// VTABLE 0x100d9808
|
||||
@ -22,7 +23,9 @@ class Bike : public IslePathActor
|
||||
{
|
||||
return !strcmp(name, Bike::ClassName()) || IslePathActor::IsA(name);
|
||||
}
|
||||
|
||||
private:
|
||||
// TODO: Bike fields
|
||||
undefined m_unk160[4];
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
#include "jetski.h"
|
||||
|
||||
#include "decomp.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(Jetski, 0x164);
|
||||
|
||||
// OFFSET: LEGO1 0x1007e3b0
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#ifndef JETSKI_H
|
||||
#define JETSKI_H
|
||||
|
||||
#include "decomp.h"
|
||||
#include "islepathactor.h"
|
||||
|
||||
// VTABLE 0x100d9ec8
|
||||
@ -22,7 +23,9 @@ class Jetski : public IslePathActor
|
||||
{
|
||||
return !strcmp(name, Jetski::ClassName()) || IslePathActor::IsA(name);
|
||||
}
|
||||
|
||||
private:
|
||||
// TODO: Jetski fields
|
||||
undefined m_unk160[4];
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
#include "racecar.h"
|
||||
|
||||
#include "decomp.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(RaceCar, 0x164);
|
||||
|
||||
// OFFSET: LEGO1 0x10028200
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#ifndef RACECAR_H
|
||||
#define RACECAR_H
|
||||
|
||||
#include "decomp.h"
|
||||
#include "islepathactor.h"
|
||||
|
||||
// VTABLE 0x100d6918
|
||||
@ -23,7 +24,9 @@ class RaceCar : public IslePathActor
|
||||
{
|
||||
return !strcmp(name, RaceCar::ClassName()) || IslePathActor::IsA(name);
|
||||
}
|
||||
|
||||
private:
|
||||
// TODO: RaceCar fields
|
||||
undefined m_unk160[4];
|
||||
};
|
||||
|
||||
#endif // RACECAR_H
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
#include "towtrack.h"
|
||||
|
||||
#include "decomp.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(TowTrack, 0x180);
|
||||
|
||||
// OFFSET: LEGO1 0x1004c720
|
||||
|
||||
@ -26,7 +26,7 @@ class TowTrack : public IslePathActor
|
||||
|
||||
private:
|
||||
// TODO: TowTrack field types
|
||||
undefined m_unk160[0x4];
|
||||
undefined m_unk154[0x8];
|
||||
MxS32 m_unk164;
|
||||
MxS16 m_unk168;
|
||||
MxS16 m_unk16a;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user