1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-25 23:57:37 +00:00
re3/src/core/Stats.cpp

14 lines
425 B
C++
Raw Normal View History

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