blob: a809ef9ea9852be0b33e8f5e5970451f11c4fd0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef GAMETIME_H_
#define GAMETIME_H_
namespace game {
namespace time {
void setTickCount(unsigned int t);
unsigned int getTickCount(void);
unsigned int getDeltaTime(void);
void tick(void);
void tick(unsigned int ticks);
bool tickHasPassed(void);
void mainLoopHandler(void);
}
}
#endif // GAMETIME_H_
|