1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 07:17:04 +00:00
re3/src/control/Population.h
2019-06-28 19:23:28 +02:00

19 lines
307 B
C++

#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);
static void DealWithZoneChange(eLevelName oldLevel, eLevelName newLevel, bool);
};