mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-28 03:20:24 +00:00
13 lines
155 B
C++
13 lines
155 B
C++
#include "stdafx.h"
|
|
|
|
class Timer
|
|
{
|
|
private:
|
|
double _frequency = 0.0;
|
|
uint64_t _start;
|
|
|
|
public:
|
|
Timer();
|
|
void Reset();
|
|
double GetElapsedMS();
|
|
}; |