mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-24 18:16:52 +01:00
19 lines
307 B
C++
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);
|
|
};
|