19 lines
254 B
C
19 lines
254 B
C
|
//
|
||
|
// Created by Иван Ильин on 11.01.2021.
|
||
|
//
|
||
|
|
||
|
#ifndef ENGINE_TIME_H
|
||
|
#define ENGINE_TIME_H
|
||
|
|
||
|
namespace Time
|
||
|
{
|
||
|
int fps();
|
||
|
double time();
|
||
|
double deltaTime();
|
||
|
double realDeltaTime();
|
||
|
void update();
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif //INC_3DZAVR_TIME_H
|