mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 08:38:58 +00:00
17 lines
226 B
C++
17 lines
226 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);
|
|
};
|