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>2009-01-26 20:19:10 +0000
committerStijn Buys <ingar@osirion.org>2009-01-26 20:19:10 +0000
commitc99a440e6fb1edf35e280f4df8ba22600e490535 (patch)
tree9c39358c234e1629bc0cb2e4b5a2685f562663c9 /src/client/client.h
parent597b3e0921dd24fa5e224377da4754da93a782c1 (diff)
removed View class
Diffstat (limited to 'src/client/client.h')
-rw-r--r--src/client/client.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/client.h b/src/client/client.h
index e527b37..b873a20 100644
--- a/src/client/client.h
+++ b/src/client/client.h
@@ -12,7 +12,7 @@
#include "core/entity.h"
#include "client/clientext.h"
#include "client/soundext.h"
-#include "client/view.h"
+#include "client/worldview.h"
#include "render/renderext.h"
/// client part of the engine
@@ -61,8 +61,8 @@ public:
/// disconnect notification
virtual void notify_disconnect();
- /// the main client view
- inline View *view() { return client_view; }
+ /// the main client widget
+ inline WorldView *worldview() { return client_worldview; }
protected:
/// run a client frame
@@ -77,7 +77,7 @@ private:
static void func_ui_map(std::string const &args);
static void func_ui_menu(std::string const &args);
- View *client_view;
+ WorldView *client_worldview;
unsigned long previous_timestamp;
};