1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 10:27:04 +00:00
re3/src/peds/PedPlacement.h

8 lines
266 B
C
Raw Normal View History

#pragma once
class CPedPlacement {
public:
2020-07-27 13:04:05 +00:00
static bool 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);
};