mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-02-16 10:09:19 +01:00
18 lines
424 B
C++
18 lines
424 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*);
|
|
static void TellOccupantsToLeaveCar(CVehicle*);
|
|
};
|