blob: d1b0cd165280b0781366a924d91a00cac5e985a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#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);
};
|