Autopysta
Loading...
Searching...
No Matches
clock.h
Go to the documentation of this file.
1
10#ifndef _CLOCK
11#define _CLOCK
12
18class clock {
19public:
20 static double time;
21 static double dt;
22 static bool updation;
23};
24
25#endif
Brief description about clock class.
Definition clock.h:18
static double time
Actual time.
Definition clock.h:20
static double dt
Delta time.
Definition clock.h:21
static bool updation
Update boolean.
Definition clock.h:22