diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/client.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/client.cc b/src/client/client.cc index 556e2a7..ba1c0bc 100644 --- a/src/client/client.cc +++ b/src/client/client.cc @@ -26,7 +26,7 @@ namespace client //--- private definition ------------------------------------------ /// client application implementation -class Client : public core::ApplicationInterface +class Client : public core::Application { public: /// initialize the client Client @@ -64,14 +64,14 @@ void main(int count, char **arguments) void Client::quit(int status) { SDL_Quit(); - core::ApplicationInterface::quit(status); + core::Application::quit(status); } void Client::init() { con_print << "Initializing client..." << std::endl; // initialize core - core::ApplicationInterface::init(); + core::Application::init(); // Initialize the video subsystem if (!client::video::init()) @@ -100,7 +100,7 @@ void Client::run() // run a core frame float seconds = ((float)(current - chrono)) / 1000.0f; - core::ApplicationInterface::frame(seconds); + core::Application::frame(seconds); // run a video frame video::frame(seconds); @@ -128,7 +128,7 @@ void Client::shutdown() video::shutdown(); console::flush(); - core::ApplicationInterface::shutdown(); + core::Application::shutdown(); console::flush(); quit(0); |