Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/client.h')
-rw-r--r--src/client/client.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/client/client.h b/src/client/client.h
index e3ff380..a25643c 100644
--- a/src/client/client.h
+++ b/src/client/client.h
@@ -7,22 +7,23 @@
#ifndef __INCLUDED_CLIENT_H__
#define __INCLUDED_CLIENT_H__
-#include "camera.h"
-#include "view.h"
-#include "input.h"
-#include "video.h"
-#include "console.h"
+#include "client/console.h"
+#include "client/camera.h"
+#include "client/view.h"
+#include "client/input.h"
+#include "client/video.h"
/// client-side functions to render and control the gameworld
-/*!
- * the client namespace contains the necessary functions to
- * accept input, send it to the game and render the result
+/** The client namespace contains the necessary functions to
+ * accept input, send it to the game and renders the result
*/
namespace client {
/// initialize the client
extern void init();
- /// run the client();
+ /// run the client
extern void run();
+ /// shutdown the client
+ extern void shutdown();
/// global Video object
extern Video video;