2019-05-18 10:39:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CVehicle;
|
|
|
|
|
|
|
|
class CCarCtrl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void SwitchVehicleToRealPhysics(CVehicle*);
|
2019-06-28 10:34:02 +00:00
|
|
|
static void AddToCarArray(int32 id, int32 vehclass);
|
2019-06-24 22:42:23 +00:00
|
|
|
static void UpdateCarCount(CVehicle*, bool);
|
2019-06-28 10:34:02 +00:00
|
|
|
static int32 ChooseCarModel(int32 vehclass);
|
2019-06-24 14:57:54 +00:00
|
|
|
|
|
|
|
static int32 &NumLawEnforcerCars;
|
2019-06-30 10:59:55 +00:00
|
|
|
static int32 &NumAmbulancesOnDuty;
|
|
|
|
static int32 &NumFiretrucksOnDuty;
|
2019-06-29 09:09:33 +00:00
|
|
|
static bool &bCarsGeneratedAroundCamera;
|
2019-05-18 10:39:39 +00:00
|
|
|
};
|