re3/src/core/Stats.cpp

14 lines
425 B
C++
Raw Normal View History

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