mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-12-28 23:03:01 +05:00
19 lines
No EOL
373 B
C++
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 |