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