blob: 5969d0fc99927c8b3799b7d738e20d0f1b6487b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
class cTimer
{
public:
cTimer();
~cTimer();
long long GetNowTime();
private:
#ifdef _WIN32
void* m_TicksPerSecond; // LARGE_INTEGER*
#endif
};
|