Files
LegacyMultiplayerProject/Minecraft.World/PerformanceTimer.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04: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);
};