Files
mc-lce/Minecraft.World/PerformanceTimer.h
2026-03-01 02:38:58 +02:00

13 lines
201 B
C++

#pragma once
class PerformanceTimer
{
private:
LARGE_INTEGER m_qwStartTime;
float m_fSecsPerTick;
public:
PerformanceTimer();
void Reset();
void PrintElapsedTime(const wstring &description);
};