mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-06 01:10:02 +00:00
ComputeDopplerEffectedFrequency
This commit is contained in:
parent
2c647ef228
commit
a04d8f24be
14 changed files with 1385 additions and 280 deletions
|
@ -320,3 +320,19 @@ inline uint8 GetVehDoorFlag(int32 carnode) {
|
|||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
class cTransmission;
|
||||
|
||||
class cVehicleParams
|
||||
{
|
||||
public:
|
||||
char m_bDistanceCalculated;
|
||||
char gap_1[3];
|
||||
float m_fDistance;
|
||||
CVehicle *m_pVehicle;
|
||||
cTransmission *m_pTransmission;
|
||||
int m_nIndex;
|
||||
float m_fVelocityChange;
|
||||
};
|
||||
|
||||
static_assert(sizeof(cVehicleParams) == 0x18, "CVehicle: error");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue