1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-01-24 06:50:59 +00:00
re3/src/control/CarAI.h
Nikolay Korolev 368ce0d4e5 CCarCtrl
2019-09-15 02:28:07 +03:00

20 lines
518 B
C++

#pragma once
#include "AutoPilot.h"
class CVehicle;
class CCarAI
{
public:
static void UpdateCarAI(CVehicle*);
static void MakeWayForCarWithSiren(CVehicle *veh);
static int32 FindPoliceCarSpeedForWantedLevel(CVehicle*);
static eCarMission FindPoliceCarMissionForWantedLevel();
static void AddPoliceOccupants(CVehicle*);
static void AddAmbulanceOccupants(CVehicle*);
static void AddFiretruckOccupants(CVehicle*);
static void CarHasReasonToStop(CVehicle*);
static void TellOccupantsToLeaveCar(CVehicle*);
};