mirror of
https://github.com/halpz/re3.git
synced 2025-01-25 07:00:59 +00:00
14 lines
243 B
C++
14 lines
243 B
C++
#pragma once
|
|
|
|
class CVehicle;
|
|
|
|
class CCarCtrl
|
|
{
|
|
public:
|
|
static void SwitchVehicleToRealPhysics(CVehicle*);
|
|
static void AddToCarArray(int id, int vehclass);
|
|
static void UpdateCarCount(CVehicle*, bool);
|
|
|
|
static int32 &NumLawEnforcerCars;
|
|
};
|