aboutsummaryrefslogtreecommitdiff
path: root/archive/hge/timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'archive/hge/timer.cpp')
-rw-r--r--archive/hge/timer.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/archive/hge/timer.cpp b/archive/hge/timer.cpp
deleted file mode 100644
index 13711c7..0000000
--- a/archive/hge/timer.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
-** 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;
-}
-
-float CALL HGE_Impl::Timer_GetFPSf()
-{
- return nFPSf;
-}