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