Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/server.h')
-rw-r--r--src/server/server.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/server/server.h b/src/server/server.h
index 7871c5f..29656bd 100644
--- a/src/server/server.h
+++ b/src/server/server.h
@@ -7,18 +7,13 @@
#ifndef __INCLUDED_SERVER_H__
#define __INCLUDED_SERVER_H__
-#include "server/application.h"
-#include "server/console.h"
#include "game/game.h"
/// contains classes and functions to run a dedicated server
namespace server {
-
-/// global server application instance
-extern Application application;
-
-/// global server console instance
-extern Console console;
+
+/// the server main loop
+void main(int count, char **arguments);
/// global Game instance
extern game::Game *game;