mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 07:58:58 +00:00
14 lines
319 B
C++
14 lines
319 B
C++
#pragma once
|
|
|
|
#include "Vehicle.h"
|
|
|
|
class CAutomobile : public CVehicle
|
|
{
|
|
public:
|
|
// 0x288
|
|
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");
|