1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 01:27:37 +00:00
re3/src/Stats.cpp

13 lines
324 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;
int32 &CStats::NumberKillFrenziesPassed = *(int32*)0x8E287C;
int32 &CStats::PeopleKilledByOthers = *(int32*)0x8E2C50;
void CStats::AnotherKillFrenzyPassed()
{
++NumberKillFrenziesPassed;
}