Khaotic Engine Reborn
Loading...
Searching...
No Matches
timer_class.h
1#ifndef _TIMERCLASS_H_
2#define _TIMERCLASS_H_
3
4
6// INCLUDES //
8#include "Logger.h"
9#include <windows.h>
10
11
13// Class name: timer_class
16{
17public:
21
22 bool Initialize();
23 void Frame();
24
25 float GetTime();
26
27private:
28 float m_frequency;
29 INT64 m_startTime;
30 float m_frameTime;
31
32};
33
34#endif