1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 08:47:06 +00:00
re3/src/control/CarCtrl.h
2019-06-28 12:34:02 +02:00

15 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;
};