diff options
Diffstat (limited to 'src/Timer.h')
-rw-r--r-- | src/Timer.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Timer.h b/src/Timer.h new file mode 100644 index 0000000..c0c99a1 --- /dev/null +++ b/src/Timer.h @@ -0,0 +1,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 + |