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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/client.h b/src/client/client.h
index 42b87e6..5b869ad 100644
--- a/src/client/client.h
+++ b/src/client/client.h
@@ -13,7 +13,7 @@
#include "client/clientext.h"
#include "client/soundext.h"
#include "client/testmodelview.h"
-#include "client/worldview.h"
+#include "client/mainwindow.h"
#include "render/renderext.h"
/// client part of the engine
@@ -61,8 +61,8 @@ public:
virtual void notify_disconnect();
/// the main client widget
- inline WorldView *worldview() {
- return client_worldview;
+ inline MainWindow *mainwindow() {
+ return client_mainwindow;
}
/// model test widget
@@ -102,7 +102,7 @@ private:
static void func_menu(std::string const &args);
static void func_view(std::string const &args);
- WorldView *client_worldview;
+ MainWindow *client_mainwindow;
TestModelView *client_testmodelview;
unsigned long previous_timestamp;