mirror of
https://github.com/halpz/re3.git
synced 2025-01-09 20:35:27 +00:00
16 lines
335 B
C++
16 lines
335 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;
|
|
static bool &bCarsGeneratedAroundCamera;
|
|
};
|