1
0
cuberite-2a/source/OSSupport/Timer.h
2012-09-23 21:23:33 +00:00

15 lines
162 B
C++

#pragma once
class cTimer
{
public:
cTimer();
~cTimer();
long long GetNowTime();
private:
#ifdef _WIN32
void* m_TicksPerSecond; // LARGE_INTEGER*
#endif
};