diff options
author | aap <aap@papnet.eu> | 2019-06-28 12:34:02 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-28 12:34:02 +0200 |
commit | 847720aeae362868d8a3fa2681ef71f2c417399a (patch) | |
tree | 7845917dccc4f33b158e64ee458ac143b94efaa9 /src/control/Population.h | |
parent | Merge pull request #59 from Nick007J/master (diff) | |
download | re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.gz re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.bz2 re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.lz re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.xz re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.zst re3-847720aeae362868d8a3fa2681ef71f2c417399a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Population.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/control/Population.h b/src/control/Population.h index a5572cdb..76442442 100644 --- a/src/control/Population.h +++ b/src/control/Population.h @@ -2,10 +2,16 @@ #include "PedType.h" +struct PedGroup +{ + int32 models[8]; +}; + class CPopulation { public: + static PedGroup *ms_pPedGroups; //[31] static bool &ms_bGivePedsWeapons; static void UpdatePedCount(uint32, bool); -};
\ No newline at end of file +}; |