This commit is contained in:
DirtyDuckEUW 2021-10-15 23:15:16 +02:00
parent 6dd93155cc
commit 6e22717a81
8 changed files with 576 additions and 0 deletions

12
LSString/Timer.h Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include <chrono>
class Timer
{
public:
Timer(void);
~Timer(void);
private:
std::chrono::time_point<std::chrono::high_resolution_clock> m_StartTimePoint;
};