diff options
author | aap <aap@papnet.eu> | 2020-03-29 19:12:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 19:12:53 +0200 |
commit | 8e3ee096e2ec54ea852c29f8eb44ec0eaa4588cd (patch) | |
tree | e086c6d1056146aa7b986e602a6dc00bd4db3632 /src/core/World.h | |
parent | c1ac0856f8293d5aa83c99f4ae8cccacf07fe82d (diff) | |
parent | 3a4e2275def684f5bcf5ed5b7f3f22ec1367bb4f (diff) |
Merge pull request #366 from Nick007J/master
Garage part 1
Diffstat (limited to 'src/core/World.h')
-rw-r--r-- | src/core/World.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/World.h b/src/core/World.h index c9d57ab7..c4103eb2 100644 --- a/src/core/World.h +++ b/src/core/World.h @@ -115,6 +115,7 @@ public: static void FindMissionEntitiesIntersectingCube(const CVector&, const CVector&, int16*, int16, CEntity**, bool, bool, bool); static void ClearCarsFromArea(float, float, float, float, float, float); static void ClearPedsFromArea(float, float, float, float, float, float); + static void CallOffChaseForArea(float, float, float, float); static float GetSectorX(float f) { return ((f - WORLD_MIN_X)/SECTOR_SIZE_X); } static float GetSectorY(float f) { return ((f - WORLD_MIN_Y)/SECTOR_SIZE_Y); } |