summaryrefslogtreecommitdiffstats
path: root/src/control/Population.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2019-06-28 18:19:37 +0200
committereray orçunus <erayorcunus@gmail.com>2019-06-28 18:19:37 +0200
commitb5cb82f478405cef727e5400c11287c25069b3ce (patch)
tree71933b3094716a174bdaf5ed3036ad92ac1c3ee7 /src/control/Population.h
parentFootsteps (diff)
parentCHud cleanup: fixes and cosmetic treatment (diff)
downloadre3-b5cb82f478405cef727e5400c11287c25069b3ce.tar
re3-b5cb82f478405cef727e5400c11287c25069b3ce.tar.gz
re3-b5cb82f478405cef727e5400c11287c25069b3ce.tar.bz2
re3-b5cb82f478405cef727e5400c11287c25069b3ce.tar.lz
re3-b5cb82f478405cef727e5400c11287c25069b3ce.tar.xz
re3-b5cb82f478405cef727e5400c11287c25069b3ce.tar.zst
re3-b5cb82f478405cef727e5400c11287c25069b3ce.zip
Diffstat (limited to 'src/control/Population.h')
-rw-r--r--src/control/Population.h8
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
+};