aboutsummaryrefslogtreecommitdiff
path: root/hgewin/timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hgewin/timer.cpp')
-rwxr-xr-xhgewin/timer.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/hgewin/timer.cpp b/hgewin/timer.cpp
new file mode 100755
index 0000000..af75315
--- /dev/null
+++ b/hgewin/timer.cpp
@@ -0,0 +1,28 @@
+/*
+** Haaf's Game Engine 1.8
+** Copyright (C) 2003-2007, Relish Games
+** hge.relishgames.com
+**
+** Core functions implementation: timer
+*/
+
+
+#include "hge_impl.h"
+
+
+float CALL HGE_Impl::Timer_GetTime()
+{
+ return fTime;
+}
+
+float CALL HGE_Impl::Timer_GetDelta()
+{
+ return fDeltaTime;
+}
+
+
+int CALL HGE_Impl::Timer_GetFPS()
+{
+ return nFPS;
+}
+