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 01:42:23 +03:00
|
|
|
static void UpdateCarCount(CVehicle*, bool);
|
2019-06-28 12:34:02 +02:00
|
|
|
static int32 ChooseCarModel(int32 vehclass);
|
2019-06-24 17:57:54 +03:00
|
|
|
|
|
|
|
static int32 &NumLawEnforcerCars;
|
2019-05-18 12:39:39 +02:00
|
|
|
};
|