diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-02-16 03:15:58 +0100 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-02-17 13:57:50 +0100 |
commit | ff92b822b673e77c9fa9af6ecbab5745a6ff01d8 (patch) | |
tree | 757d2859d10e97cd59474decd744405ba7af37fd /src/control/Population.h | |
parent | Merge pull request #326 from erorcun/erorcun (diff) | |
download | re3-ff92b822b673e77c9fa9af6ecbab5745a6ff01d8.tar re3-ff92b822b673e77c9fa9af6ecbab5745a6ff01d8.tar.gz re3-ff92b822b673e77c9fa9af6ecbab5745a6ff01d8.tar.bz2 re3-ff92b822b673e77c9fa9af6ecbab5745a6ff01d8.tar.lz re3-ff92b822b673e77c9fa9af6ecbab5745a6ff01d8.tar.xz re3-ff92b822b673e77c9fa9af6ecbab5745a6ff01d8.tar.zst re3-ff92b822b673e77c9fa9af6ecbab5745a6ff01d8.zip |
Diffstat (limited to 'src/control/Population.h')
-rw-r--r-- | src/control/Population.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/control/Population.h b/src/control/Population.h deleted file mode 100644 index 572d6f58..00000000 --- a/src/control/Population.h +++ /dev/null @@ -1,51 +0,0 @@ -#pragma once - -#include "Game.h" - -class CPed; -class CVehicle; - -struct PedGroup -{ - int32 models[8]; -}; - -class CPopulation -{ -public: - static PedGroup *ms_pPedGroups; //[31] - static bool &ms_bGivePedsWeapons; - static int32 &m_AllRandomPedsThisType; - static float &PedDensityMultiplier; - static uint32 &ms_nTotalMissionPeds; - static int32 &MaxNumberOfPedsInUse; - static uint32& ms_nNumCivMale; - static uint32 &ms_nNumCivFemale; - static uint32 &ms_nNumCop; - static bool &bZoneChangeHasHappened; - static uint32 &ms_nNumEmergency; - static uint32& m_CountDownToPedsAtStart; - static uint32& ms_nNumGang1; - static uint32& ms_nNumGang2; - static uint32& ms_nTotalPeds; - static uint32& ms_nNumGang3; - static uint32& ms_nTotalGangPeds; - static uint32& ms_nNumGang4; - static uint32& ms_nTotalCivPeds; - static uint32& ms_nNumGang5; - static uint32& ms_nNumDummy; - static uint32& ms_nNumGang6; - static uint32& ms_nNumGang9; - static uint32& ms_nNumGang7; - static uint32& ms_nNumGang8; - - static void Initialise(); - static void Update(void); - static void LoadPedGroups(); - static void UpdatePedCount(uint32, bool); - static void DealWithZoneChange(eLevelName oldLevel, eLevelName newLevel, bool); - static CPed *AddPedInCar(CVehicle *vehicle); - static bool IsPointInSafeZone(CVector *coors); - static void RemovePed(CEntity* ent); - static int32 ChooseCivilianOccupation(int32); -}; |