Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-21 19:00:39 +0000
committerStijn Buys <ingar@osirion.org>2008-10-21 19:00:39 +0000
commitd79c0223315beaf55fcd10d6891675c4d57b5e2b (patch)
tree3ea902634192dfcffa21a4e7a8cd28da714f0daa /src/client/client.h
parent9f2e49593639a9f1f3e5f4f7b690ff364afefd56 (diff)
moved client console into libui
Diffstat (limited to 'src/client/client.h')
-rw-r--r--src/client/client.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/client/client.h b/src/client/client.h
index d7e3cc0..6fb294d 100644
--- a/src/client/client.h
+++ b/src/client/client.h
@@ -8,7 +8,6 @@
#define __INCLUDED_CLIENT_H__
#include "core/application.h"
-#include "client/console.h"
#include "client/view.h"
/// client part of the engine
@@ -57,16 +56,12 @@ 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(unsigned long timestamp);
private:
View *client_view;
- Console *client_console;
unsigned long previous_timestamp;
};