diff options
Diffstat (limited to 'Stars45/Game.cpp')
-rw-r--r-- | Stars45/Game.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Stars45/Game.cpp b/Stars45/Game.cpp index 322c068..7d88bf8 100644 --- a/Stars45/Game.cpp +++ b/Stars45/Game.cpp @@ -559,38 +559,6 @@ Game::GetInstance() return game; } -Color -Game::GetScreenColor() -{ - return screen_color; -} - -void -Game::SetScreenColor(Color c) -{ - screen_color = c; - if (screen) - screen->SetBackgroundColor(c); -} - -int -Game::GetScreenWidth() -{ - if (video) - return video->Width(); - - return 0; -} - -int -Game::GetScreenHeight() -{ - if (video) - return video->Height(); - - return 0; -} - // +--------------------------------------------------------------------+ void |