summaryrefslogtreecommitdiffstats
path: root/src/entities/Automobile.h
blob: 06c0e74200f54ffe62b62756d1d5d7d9a9521f4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "Vehicle.h"

class CAutomobile : public CVehicle
{
public:
	// 0x228
	uint8 stuff1[484];
	float m_afWheelSuspDist[4];
	uint8 stuff2[300];
};
static_assert(sizeof(CAutomobile) == 0x5A8, "CAutomobile: error");
static_assert(offsetof(CAutomobile, m_afWheelSuspDist) == 0x46C, "CAutomobile: error");