blob: 2974383685e1f4bc18fa2df3ec6f6c3afd801c97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _TIMER_H_
#define _TIMER_H_
/**> HEADER FILES <**/
class timer
{
public:
unsigned long mm_timer_start;
unsigned long mm_timer_elapsed;
};
void TimerInit(timer* theTimer);
float TimerGetTime(timer* theTimer);
#endif
|