diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-16 21:08:54 +0100 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-16 21:08:54 +0100 |
commit | 1337a9b6034570861a7cadaf5338d0cbb5b06255 (patch) | |
tree | dc65656c184c0060f053d0f0ea45a8125628e9cd /src/core/World.h | |
parent | review fixes (diff) | |
download | re3-1337a9b6034570861a7cadaf5338d0cbb5b06255.tar re3-1337a9b6034570861a7cadaf5338d0cbb5b06255.tar.gz re3-1337a9b6034570861a7cadaf5338d0cbb5b06255.tar.bz2 re3-1337a9b6034570861a7cadaf5338d0cbb5b06255.tar.lz re3-1337a9b6034570861a7cadaf5338d0cbb5b06255.tar.xz re3-1337a9b6034570861a7cadaf5338d0cbb5b06255.tar.zst re3-1337a9b6034570861a7cadaf5338d0cbb5b06255.zip |
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 68af156c..12582d49 100644 --- a/src/core/World.h +++ b/src/core/World.h @@ -116,6 +116,7 @@ public: static void FindObjectsIntersectingAngledCollisionBox(const CColBox &, const CMatrix &, const CVector &, float, float, float, float, int16*, int16, CEntity **, bool, bool, bool, bool, bool); 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 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); } |