mirror of
https://github.com/halpz/re3.git
synced 2025-01-09 20:35:27 +00:00
16 lines
331 B
C++
16 lines
331 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*);
|
|
};
|