implemented CDoor

This commit is contained in:
aap
2019-07-07 18:36:55 +02:00
parent 53023eb65b
commit c1f3ce8cce
6 changed files with 177 additions and 19 deletions

View File

@ -1,21 +1,8 @@
#pragma once
#include "DamageManager.h"
#include "Vehicle.h"
struct CDoor
{
float m_fAngleWhenOpened;
float m_fAngleWhenClosed;
char field_8;
char field_9;
char field_10;
char field_11;
float m_fAngle;
float m_fPreviousAngle;
float m_fAngularVelocity;
CVector m_vecVelocity;
};
#include "DamageManager.h"
#include "Door.h"
class CAutomobile : public CVehicle
{