mirror of
https://github.com/halpz/re3.git
synced 2025-01-29 07:40:59 +00:00
15 lines
283 B
C++
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();
|
|
}; |