From 8ee5d47d7e1336eb69064ca31e27bbfa7d86b51e Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Tue, 5 Feb 2008 00:41:59 +0000 Subject: renamed ApplicationInterface to Application --- src/client/client.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/client') 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); -- cgit v1.2.3