Re3/src/core/Stats.cpp

17 lines
533 B
C++
Raw Normal View History

2019-06-12 20:35:26 -04:00
#include "common.h"
#include "Stats.h"
2019-06-16 18:16:38 -04:00
int32 &CStats::DaysPassed = *(int32*)0x8F2BB8;
2019-07-04 16:31:21 -04:00
int32 &CStats::HeadShots = *(int32*)0x8F647C;
2019-07-07 03:21:44 -04:00
bool& CStats::CommercialPassed = *(bool*)0x8F4334;
2019-07-10 05:36:47 -04:00
bool& CStats::IndustrialPassed = *(bool*)0x8E2A68;
2019-07-04 16:31:21 -04:00
int32 &CStats::NumberKillFrenziesPassed = *(int32*)0x8E287C;
int32 &CStats::PeopleKilledByOthers = *(int32*)0x8E2C50;
2019-08-03 18:31:00 -04:00
int32 &CStats::HelisDestroyed = *(int32*)0x8E2A64;
int32 *CStats::PedsKilledOfThisType = (int32*)0x880DBC;
2019-07-04 16:31:21 -04:00
void CStats::AnotherKillFrenzyPassed()
{
++NumberKillFrenziesPassed;
2019-08-03 18:31:00 -04:00
}