LSFramework/LSString/Timer.h
2021-10-15 23:15:16 +02:00

12 lines
No EOL
177 B
C++

#pragma once
#include <chrono>
class Timer
{
public:
Timer(void);
~Timer(void);
private:
std::chrono::time_point<std::chrono::high_resolution_clock> m_StartTimePoint;
};