summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/Game.cpp')
-rw-r--r--Stars45/Game.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/Stars45/Game.cpp b/Stars45/Game.cpp
index 97de488..5dfd828 100644
--- a/Stars45/Game.cpp
+++ b/Stars45/Game.cpp
@@ -182,24 +182,6 @@ Game::FrameRate()
return 0;
}
-double
-Game::FrameTime()
-{
- if (game)
- return game->GetClock()->Delta();
-
- return 0;
-}
-
-double
-Game::GUITime()
-{
- if (game)
- return game->GetClock()->GuiDelta();
-
- return 0;
-}
-
// +--------------------------------------------------------------------+
bool
@@ -1244,16 +1226,6 @@ Game::GetClock()
return &clock;
}
-DWORD Game::RealTime()
-{
- return clock.RealTime();
-}
-
-DWORD Game::GameTime()
-{
- return clock.GameTime();
-}
-
DWORD Game::TimeCompression()
{
return clock.TimeCompression();
@@ -1269,14 +1241,3 @@ DWORD Game::Frame()
{
return frame_number;
}
-
-void Game::ResetGameTime()
-{
- clock.ResetGameTime();
-}
-
-void Game::SkipGameTime(double seconds)
-{
- if (seconds > 0)
- clock.SkipGameTime(seconds);
-}