📄 stopwatch.h
字号:
#if !defined(STOP_WATCH_H)
#define STOP_WATCH_H
#include <windows.h>
//--------------------------------------------------------------------------------------
// Used for timing and animations...
//--------------------------------------------------------------------------------------
class CStopWatch
{
public:
CStopWatch();
virtual ~CStopWatch();
void Start();
void Stop();
void Pause();
void Update( float fElapsedTime );
void SetTime( float fTime );
float GetTime();
bool IsPaused();
protected:
bool m_bIsPaused;
float m_fTime;
};
#endif
//////////////////////////////////////////////////////////////////////////////////////////////
// This file is copyright
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -