re3/src/entities/Automobile.h

15 lines
319 B
C
Raw Normal View History

2019-05-19 19:28:10 +00:00
#pragma once
#include "Vehicle.h"
class CAutomobile : public CVehicle
{
public:
2019-06-02 15:13:56 +00:00
// 0x288
2019-05-19 19:28:10 +00:00
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");