summaryrefslogtreecommitdiffstats
path: root/src/core/World.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2019-07-10 08:06:43 +0200
committereray orçunus <erayorcunus@gmail.com>2019-07-10 14:56:29 +0200
commit86681c6f18b5741ba25bbbb7319bb832ffa4807a (patch)
tree0af4b378873305260733777e528fc4b13e530400 /src/core/World.h
parentOne driver owns all the cars fix (diff)
downloadre3-86681c6f18b5741ba25bbbb7319bb832ffa4807a.tar
re3-86681c6f18b5741ba25bbbb7319bb832ffa4807a.tar.gz
re3-86681c6f18b5741ba25bbbb7319bb832ffa4807a.tar.bz2
re3-86681c6f18b5741ba25bbbb7319bb832ffa4807a.tar.lz
re3-86681c6f18b5741ba25bbbb7319bb832ffa4807a.tar.xz
re3-86681c6f18b5741ba25bbbb7319bb832ffa4807a.tar.zst
re3-86681c6f18b5741ba25bbbb7319bb832ffa4807a.zip
Diffstat (limited to '')
-rw-r--r--src/core/World.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/World.h b/src/core/World.h
index 3b7090da..d6063d70 100644
--- a/src/core/World.h
+++ b/src/core/World.h
@@ -93,7 +93,9 @@ public:
static bool GetIsLineOfSightClear(const CVector &point1, const CVector &point2, bool checkBuildings, bool checkVehicles, bool checkPeds, bool checkObjects, bool checkDummies, bool ignoreSeeThrough, bool ignoreSomeObjects = false);
static bool GetIsLineOfSightSectorClear(CSector &sector, const CColLine &line, bool checkBuildings, bool checkVehicles, bool checkPeds, bool checkObjects, bool checkDummies, bool ignoreSeeThrough, bool ignoreSomeObjects = false);
static bool GetIsLineOfSightSectorListClear(CPtrList &list, const CColLine &line, bool ignoreSeeThrough, bool ignoreSomeObjects = false);
-
+
+ static void FindObjectsInRangeSectorList(CPtrList&, CVector&, float, bool, short*, short, CEntity**);
+ static void FindObjectsInRange(CVector&, float, bool, short*, short, CEntity**, bool, bool, bool, bool, bool);
static float FindGroundZForCoord(float x, float y);
static float FindGroundZFor3DCoord(float x, float y, float z, bool *found);
static float FindRoofZFor3DCoord(float x, float y, float z, bool *found);