summaryrefslogblamecommitdiffstats
path: root/src/control/CarAI.h
blob: b04db0210a52a66c9db344c31b61e00732a47236 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

            

                      





                                           
                                                          


                                                                 
                                                  
                                                       
  
#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 CarHasReasonToStop(CVehicle*);
	static void TellOccupantsToLeaveCar(CVehicle*);
};