summaryrefslogtreecommitdiffstats
path: root/source/cTimer.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cTimer.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/source/cTimer.h b/source/cTimer.h
new file mode 100644
index 000000000..52afda8bb
--- /dev/null
+++ b/source/cTimer.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