1
0
cuberite-2a/source/cTimer.h

15 lines
176 B
C
Raw Normal View History

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