mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-09 04:10:35 +00:00
Audio structs moved to their AudioManager.h
This commit is contained in:
parent
d397a59951
commit
c94ccce6d6
3 changed files with 22 additions and 27 deletions
|
@ -242,12 +242,31 @@ public:
|
|||
};
|
||||
|
||||
|
||||
class cVehicleParams;
|
||||
class cTransmission;
|
||||
class CPlane;
|
||||
class CVehicle;
|
||||
class CPed;
|
||||
class cPedParams;
|
||||
class cTransmission;
|
||||
|
||||
class cPedParams
|
||||
{
|
||||
public:
|
||||
bool m_bDistanceCalculated;
|
||||
float m_fDistance;
|
||||
CPed *m_pPed;
|
||||
};
|
||||
|
||||
class cVehicleParams
|
||||
{
|
||||
public:
|
||||
bool m_bDistanceCalculated;
|
||||
float m_fDistance;
|
||||
CVehicle *m_pVehicle;
|
||||
cTransmission *m_pTransmission;
|
||||
int m_nIndex;
|
||||
float m_fVelocityChange;
|
||||
};
|
||||
|
||||
static_assert(sizeof(cVehicleParams) == 0x18, "cVehicleParams: error");
|
||||
|
||||
enum {
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue