Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-05 00:41:59 +0000
committerStijn Buys <ingar@osirion.org>2008-02-05 00:41:59 +0000
commit8ee5d47d7e1336eb69064ca31e27bbfa7d86b51e (patch)
treeb4ac5b825a118e8c88f4003603bca231ea3bc8bb /src/server/server.cc
parente63d8bec31ad067efb7aafd1c798bcdab8db8faf (diff)
renamed ApplicationInterface to Application
Diffstat (limited to 'src/server/server.cc')
-rw-r--r--src/server/server.cc10
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);
}