summary refs log tree commit diff
path: root/src/Timer.h
blob: c0c99a19f52f3e76f4a693d57ba913c8c6f5747a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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