1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-13 09:18:30 +00:00
re3/src/peds/PedPlacement.h
2020-07-28 17:04:34 +03:00

8 lines
266 B
C++

#pragma once
class CPedPlacement {
public:
static bool FindZCoorForPed(CVector* pos);
static CEntity* IsPositionClearOfCars(Const CVector*);
static bool IsPositionClearForPed(const CVector& pos, float radius = -1.0f, int total = -1, CEntity** entities = nil);
};