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