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