summaryrefslogtreecommitdiffstats
path: root/src/control/Population.h
blob: 76442442cf4685bb0efddee0cac133263a343093 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#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);
};