implemented some CVehicle functions

This commit is contained in:
aap 2019-07-05 14:23:39 +02:00
commit 396b43cbd4
9 changed files with 513 additions and 70 deletions

View file

@ -1,6 +1,7 @@
#pragma once
#include "PedType.h"
class CPed;
class CVehicle;
struct PedGroup
{
@ -17,4 +18,5 @@ public:
static void UpdatePedCount(uint32, bool);
static void DealWithZoneChange(eLevelName oldLevel, eLevelName newLevel, bool);
static CPed *AddPedInCar(CVehicle *vehicle);
};