1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-07-01 13:03:48 +00:00
re3/src/peds/PedPlacement.h

8 lines
266 B
C
Raw Normal View History

#pragma once
class CPedPlacement {
public:
static void FindZCoorForPed(CVector* pos);
2020-05-05 01:45:18 +00:00
static CEntity* IsPositionClearOfCars(Const CVector*);
2020-05-08 20:29:43 +00:00
static bool IsPositionClearForPed(const CVector& pos, float radius = -1.0f, int total = -1, CEntity** entities = nil);
};