386d58b58
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 };