From 1e0df536c2fae85c317ce9c3cc17603d5f98c911 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 15 Oct 2008 20:33:15 +0000 Subject: moved client console into a Widget --- src/client/client.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/client/client.h') 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; }; -- cgit v1.2.3