⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stopwatch.h

📁 load .x file to application
💻 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 + -