Minor - Refactor name - V10.5.0

This commit is contained in:
2025-05-21 16:40:27 +02:00
parent 24203060be
commit f9d4523f09
113 changed files with 5200 additions and 5017 deletions

View File

@@ -0,0 +1,34 @@
#ifndef _TIMERCLASS_H_
#define _TIMERCLASS_H_
//////////////
// INCLUDES //
//////////////
#include "Logger.h"
#include <windows.h>
////////////////////////////////////////////////////////////////////////////////
// Class name: timer_class
////////////////////////////////////////////////////////////////////////////////
class timer_class
{
public:
timer_class();
timer_class(const timer_class&);
~timer_class();
bool Initialize();
void Frame();
float GetTime();
private:
float m_frequency;
INT64 m_startTime;
float m_frameTime;
};
#endif