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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/client.h b/src/client/client.h
index dc70e16..6e19848 100644
--- a/src/client/client.h
+++ b/src/client/client.h
@@ -8,6 +8,7 @@
#define __INCLUDED_CLIENT_H__
#include "core/application.h"
+#include "client/console.h"
#include "client/view.h"
/// client part of the engine
@@ -50,12 +51,16 @@ public:
/// the main client view
inline View *view() { return client_view; }
+ /// the client console
+ inline Console *console() { return client_console; }
+
protected:
/// run a client frame
virtual void frame(float seconds);
private:
View *client_view;
+ Console *client_console;
};