diff options
author | Stijn Buys <ingar@osirion.org> | 2008-02-05 00:41:59 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-02-05 00:41:59 +0000 |
commit | 8ee5d47d7e1336eb69064ca31e27bbfa7d86b51e (patch) | |
tree | b4ac5b825a118e8c88f4003603bca231ea3bc8bb /src/server | |
parent | e63d8bec31ad067efb7aafd1c798bcdab8db8faf (diff) |
renamed ApplicationInterface to Application
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/server.cc | 10 |
1 files changed, 5 insertions, 5 deletions
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); } |