mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 09:06:28 +00:00
13 lines
206 B
C++
13 lines
206 B
C++
#pragma once
|
|
|
|
class PerformanceTimer
|
|
{
|
|
private:
|
|
LARGE_INTEGER m_qwStartTime;
|
|
float m_fSecsPerTick;
|
|
|
|
public:
|
|
PerformanceTimer();
|
|
void Reset();
|
|
void PrintElapsedTime(const std::wstring &description);
|
|
}; |