re3/src/control/CarAI.h

18 lines
424 B
C
Raw Normal View History

#pragma once
2019-08-06 21:32:19 +00:00
#include "AutoPilot.h"
class CVehicle;
class CCarAI
{
public:
static void UpdateCarAI(CVehicle*);
2019-07-18 13:41:09 +00:00
static void MakeWayForCarWithSiren(CVehicle *veh);
2019-08-06 21:32:19 +00:00
static int32 FindPoliceCarSpeedForWantedLevel(CVehicle*);
static eCarMission FindPoliceCarMissionForWantedLevel();
static void AddPoliceOccupants(CVehicle*);
2019-08-11 17:11:54 +00:00
static void CarHasReasonToStop(CVehicle*);
2019-09-14 17:53:04 +00:00
static void TellOccupantsToLeaveCar(CVehicle*);
};