Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/dedicated/server.h')
-rw-r--r--src/dedicated/server.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/dedicated/server.h b/src/dedicated/server.h
new file mode 100644
index 0000000..4691e91
--- /dev/null
+++ b/src/dedicated/server.h
@@ -0,0 +1,19 @@
+/*
+ server/server.h
+ This file is part of the Osirion project and is distributed under
+ the terms and conditions of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_SERVER_H__
+#define __INCLUDED_SERVER_H__
+
+/// contains classes and functions to run a dedicated server
+namespace server {
+
+/// the server main loop
+void main(int count, char **arguments);
+
+} // namespace server
+
+#endif // __INCLUDED_SERVER_H__
+