summaryrefslogtreecommitdiffstats
path: root/source/OSSupport/Timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/OSSupport/Timer.h')
-rw-r--r--source/OSSupport/Timer.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/source/OSSupport/Timer.h b/source/OSSupport/Timer.h
new file mode 100644
index 000000000..5969d0fc9
--- /dev/null
+++ b/source/OSSupport/Timer.h
@@ -0,0 +1,15 @@
+#pragma once
+
+class cTimer
+{
+public:
+ cTimer();
+ ~cTimer();
+
+ long long GetNowTime();
+private:
+
+#ifdef _WIN32
+ void* m_TicksPerSecond; // LARGE_INTEGER*
+#endif
+}; \ No newline at end of file