CPhysical almost done

This commit is contained in:
aap
2019-05-19 21:28:10 +02:00
parent 9e496100b7
commit c4f9b9573f
12 changed files with 804 additions and 60 deletions

14
src/entities/Automobile.h Normal file
View File

@@ -0,0 +1,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");