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
15
class
timer_class
16
{
17
public
:
18
timer_class
();
19
timer_class
(
const
timer_class
&);
20
~timer_class
();
21
22
bool
Initialize();
23
void
Frame();
24
25
float
GetTime();
26
27
private
:
28
float
m_frequency;
29
INT64 m_startTime;
30
float
m_frameTime;
31
32
};
33
34
#endif
timer_class
Definition
timer_class.h:16
enginecustom
src
inc
system
timer_class.h
Generated by
1.12.0