diff options
author | aap <aap@papnet.eu> | 2020-05-05 17:23:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 17:23:23 +0200 |
commit | 2c0b82ec1a0bcb1f3b0d0215a97e964059617a39 (patch) | |
tree | 655dc6cff470ac28d19678c392a0aebb49cea937 /src/control/CarAI.h | |
parent | Revert "Remove ColStore" (diff) | |
parent | Merge remote-tracking branch 'upstream/miami' into miami (diff) | |
download | re3-2c0b82ec1a0bcb1f3b0d0215a97e964059617a39.tar re3-2c0b82ec1a0bcb1f3b0d0215a97e964059617a39.tar.gz re3-2c0b82ec1a0bcb1f3b0d0215a97e964059617a39.tar.bz2 re3-2c0b82ec1a0bcb1f3b0d0215a97e964059617a39.tar.lz re3-2c0b82ec1a0bcb1f3b0d0215a97e964059617a39.tar.xz re3-2c0b82ec1a0bcb1f3b0d0215a97e964059617a39.tar.zst re3-2c0b82ec1a0bcb1f3b0d0215a97e964059617a39.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/CarAI.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/control/CarAI.h b/src/control/CarAI.h index 9c3cb196..d4af1806 100644 --- a/src/control/CarAI.h +++ b/src/control/CarAI.h @@ -10,32 +10,22 @@ public: static float FindSwitchDistanceClose(CVehicle*); static float FindSwitchDistanceFarNormalVehicle(CVehicle*); static float FindSwitchDistanceFar(CVehicle*); -#ifdef MIAMI static void BackToCruisingIfNoWantedLevel(CVehicle*); -#endif static void UpdateCarAI(CVehicle*); static void CarHasReasonToStop(CVehicle*); static float GetCarToGoToCoors(CVehicle*, CVector*); -#ifdef MIAMI static float GetCarToParkAtCoors(CVehicle*, CVector*); -#endif static void AddPoliceCarOccupants(CVehicle*); static void AddAmbulanceOccupants(CVehicle*); static void AddFiretruckOccupants(CVehicle*); static void TellOccupantsToLeaveCar(CVehicle*); -#ifdef MIAMI static void TellOccupantsToFleeCar(CVehicle*); -#endif static void TellCarToRamOtherCar(CVehicle*, CVehicle*); static void TellCarToBlockOtherCar(CVehicle*, CVehicle*); static eCarMission FindPoliceCarMissionForWantedLevel(); -#ifdef MIAMI static eCarMission FindPoliceBoatMissionForWantedLevel(); -#endif static int32 FindPoliceCarSpeedForWantedLevel(CVehicle*); static void MellowOutChaseSpeed(CVehicle*); -#ifdef MIAMI static void MellowOutChaseSpeedBoat(CVehicle*); -#endif static void MakeWayForCarWithSiren(CVehicle *veh); }; |