blob: cbdf80132c1d58a3a34d8982a83ba816e2a09493 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
class CVector;
class CEntity;
class CPedPlacement {
public:
static void FindZCoorForPed(CVector* pos);
static CEntity* IsPositionClearOfCars(CVector*);
static bool IsPositionClearForPed(CVector*);
};
|