aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/PerformanceTimer.h
blob: 04a36949dabcaf5ebfc5012c40e2ae0a7651089d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

class PerformanceTimer
{
private:
	LARGE_INTEGER  m_qwStartTime;
	float m_fSecsPerTick;

public:
	PerformanceTimer();
	void Reset();
	void PrintElapsedTime(const wstring &description);
};