diff options
author | aap <aap@papnet.eu> | 2020-02-17 10:12:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-17 10:12:38 +0100 |
commit | 3fa200dc3e3b0d90787209ee83379dd04691d0e4 (patch) | |
tree | caaf8977c7d7715f36ad9264d3680da4d4ab1d97 /src/core/World.h | |
parent | Merge pull request #326 from erorcun/erorcun (diff) | |
parent | review fixes (diff) | |
download | re3-3fa200dc3e3b0d90787209ee83379dd04691d0e4.tar re3-3fa200dc3e3b0d90787209ee83379dd04691d0e4.tar.gz re3-3fa200dc3e3b0d90787209ee83379dd04691d0e4.tar.bz2 re3-3fa200dc3e3b0d90787209ee83379dd04691d0e4.tar.lz re3-3fa200dc3e3b0d90787209ee83379dd04691d0e4.tar.xz re3-3fa200dc3e3b0d90787209ee83379dd04691d0e4.tar.zst re3-3fa200dc3e3b0d90787209ee83379dd04691d0e4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/World.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/World.h b/src/core/World.h index 61a44ea0..68af156c 100644 --- a/src/core/World.h +++ b/src/core/World.h @@ -114,6 +114,8 @@ public: static void FindObjectsKindaColliding(const CVector &, float, bool, int16*, int16, CEntity **, bool, bool, bool, bool, bool); static void FindObjectsIntersectingCube(const CVector &, const CVector &, int16*, int16, CEntity **, bool, bool, bool, bool, bool); 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 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); } |