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/server/server.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/server') diff --git a/src/server/server.cc b/src/server/server.cc index b6b6515..78309bc 100644 --- a/src/server/server.cc +++ b/src/server/server.cc @@ -15,7 +15,7 @@ namespace server { //--- private definition ------------------------------------------ /// server Application implementation -class Server : public core::ApplicationInterface { +class Server : public core::Application { public: /// initialize the server Application virtual void init(); @@ -58,11 +58,11 @@ void Server::init() con_print << "Initializing server..." << std::endl; - core::ApplicationInterface::init(); + core::Application::init(); console::init(); - core::ApplicationInterface::connect(); + core::Application::connect(); } void Server::run() @@ -89,7 +89,7 @@ void Server::shutdown() console::shutdown(); - core::ApplicationInterface::shutdown(); + core::Application::shutdown(); quit(0); } @@ -99,7 +99,7 @@ void Server::quit(int status) // FIXME core should be able to unload game.so delete server::game; - core::ApplicationInterface::quit(status); + core::Application::quit(status); } -- cgit v1.2.3