SilentPatch/SilentPatch/Timer.h
2017-09-11 15:18:32 +02:00

19 lines
No EOL
373 B
C++

#ifndef __TIMER
#define __TIMER
class CTimer
{
public:
static float& ms_fTimeScale;
static float& ms_fTimeStep;
static bool& m_UserPause;
static bool& m_CodePause;
static int& m_snTimeInMilliseconds;
static int& m_snTimeInMillisecondsNonClipped;
static int& m_snTimeInMillisecondsPauseMode;
public:
static void Update_SilentPatch();
};
#endif