mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 00:18:59 +00:00
14 lines
293 B
C++
14 lines
293 B
C++
#pragma once
|
|
|
|
class CVehicle;
|
|
|
|
class CCarCtrl
|
|
{
|
|
public:
|
|
static void SwitchVehicleToRealPhysics(CVehicle*);
|
|
static void AddToCarArray(int32 id, int32 vehclass);
|
|
static void UpdateCarCount(CVehicle*, bool);
|
|
static int32 ChooseCarModel(int32 vehclass);
|
|
|
|
static int32 &NumLawEnforcerCars;
|
|
};
|