1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-01-29 07:40:59 +00:00
re3/src/core/Stats.h
2019-07-17 22:44:22 +03:00

15 lines
283 B
C++

#pragma once
class CStats
{
public:
static int32 &DaysPassed;
static int32 &HeadShots;
static bool& CommercialPassed;
static bool& IndustrialPassed;
static int32 &NumberKillFrenziesPassed;
static int32 &PeopleKilledByOthers;
public:
static void AnotherKillFrenzyPassed();
};