blob: 5b8354d4a6f884c707915ea73e10dbe500049555 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#pragma once
class CPedPlacement {
public:
static void FindZCoorForPed(CVector* pos);
static CEntity* IsPositionClearOfCars(Const CVector*);
static bool IsPositionClearForPed(const CVector& pos, float radius = -1.0f, int total = -1, CEntity** entities = nil);
};
|