diff options
author | aap <aap@papnet.eu> | 2019-07-05 14:23:39 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-05 14:23:39 +0200 |
commit | 396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb (patch) | |
tree | 5fb23c404383f4b7436410bd1816498f27c2cd4a /src/control/Population.h | |
parent | fixed rand (thanks nick) (diff) | |
download | re3-396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb.tar re3-396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb.tar.gz re3-396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb.tar.bz2 re3-396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb.tar.lz re3-396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb.tar.xz re3-396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb.tar.zst re3-396b43cbd4f5495c6c3c555d6b58ccfdbbf964fb.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Population.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/control/Population.h b/src/control/Population.h index 4169261a..6bd2e3ae 100644 --- a/src/control/Population.h +++ b/src/control/Population.h @@ -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); }; |