mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 14:18:59 +00:00
cPedParams ctor
This commit is contained in:
parent
18bea3cfa5
commit
441b3864f3
1 changed files with 8 additions and 1 deletions
|
@ -144,6 +144,13 @@ public:
|
|||
bool m_bDistanceCalculated;
|
||||
float m_fDistance;
|
||||
CPed *m_pPed;
|
||||
|
||||
cPedParams()
|
||||
{
|
||||
m_bDistanceCalculated = false;
|
||||
m_fDistance = 0.0f;
|
||||
m_pPed = nil;
|
||||
}
|
||||
};
|
||||
|
||||
class cVehicleParams
|
||||
|
@ -162,7 +169,7 @@ public:
|
|||
m_VehicleType = -1;
|
||||
m_bDistanceCalculated = false;
|
||||
m_fDistance = 0.0f;
|
||||
m_pVehicle = 0;
|
||||
m_pVehicle = nil;
|
||||
m_pTransmission = nil;
|
||||
m_nIndex = 0;
|
||||
m_fVelocityChange = 0.0f;
|
||||
|
|
Loading…
Reference in a new issue