1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 12:23:13 +00:00
re3/src/control/CarCtrl.h

16 lines
335 B
C
Raw Normal View History

2019-05-18 10:39:39 +00:00
#pragma once
class CVehicle;
class CCarCtrl
{
public:
static void SwitchVehicleToRealPhysics(CVehicle*);
2019-06-28 10:34:02 +00:00
static void AddToCarArray(int32 id, int32 vehclass);
2019-06-24 22:42:23 +00:00
static void UpdateCarCount(CVehicle*, bool);
2019-06-28 10:34:02 +00:00
static int32 ChooseCarModel(int32 vehclass);
static int32 &NumLawEnforcerCars;
2019-06-29 09:09:33 +00:00
static bool &bCarsGeneratedAroundCamera;
2019-05-18 10:39:39 +00:00
};