From c91847d549cc1c30eb15504a15ea9a6d5aa48165 Mon Sep 17 00:00:00 2001 From: "chirs241097@gmail.com" Date: Sun, 12 Jan 2014 14:43:14 +0000 Subject: --- hge/timer.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 hge/timer.cpp (limited to 'hge/timer.cpp') diff --git a/hge/timer.cpp b/hge/timer.cpp new file mode 100644 index 0000000..af75315 --- /dev/null +++ b/hge/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; +} + -- cgit v1.2.3