aboutsummaryrefslogtreecommitdiff
path: root/Source/Timer.h
diff options
context:
space:
mode:
authoricculus <icculus@5198baeb-e213-0410-be47-fc2ff85ca46f>2003-01-02 21:06:00 +0000
committericculus <icculus@5198baeb-e213-0410-be47-fc2ff85ca46f>2003-01-02 21:06:00 +0000
commite17acec1c9bec3a26d97ca2873bb77bdcb48665e (patch)
tree26b14b6cedcb70df651c23dddbf0981970d0bd4d /Source/Timer.h
parent59ca62d601e30b5467f8ecd2cb7d517bc682fc12 (diff)
downloadblackshades-e17acec1c9bec3a26d97ca2873bb77bdcb48665e.tar.gz
Initial revision
git-svn-id: svn://svn.icculus.org/blackshades/trunk@2 5198baeb-e213-0410-be47-fc2ff85ca46f
Diffstat (limited to 'Source/Timer.h')
-rw-r--r--Source/Timer.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Source/Timer.h b/Source/Timer.h
new file mode 100644
index 0000000..ce895bb
--- /dev/null
+++ b/Source/Timer.h
@@ -0,0 +1,17 @@
+#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 \ No newline at end of file