mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 19:29:00 +00:00
16 lines
375 B
C++
16 lines
375 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 CarHasReasonToStop(CVehicle*);
|
|
};
|