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/mainwindow.cc')
-rw-r--r--src/client/mainwindow.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/mainwindow.cc b/src/client/mainwindow.cc
index 6574303..607e503 100644
--- a/src/client/mainwindow.cc
+++ b/src/client/mainwindow.cc
@@ -37,6 +37,11 @@ MainWindow::MainWindow(ui::Widget *parent) : ui::Widget(parent)
mainwindow_gamewindow = new GameWindow(this);
mainwindow_gamewindow->raise();
mainwindow_gamewindow->hide();
+
+ // main menus
+ mainwindow_mainmenu = new MainMenu(this);
+ mainwindow_mainmenu->raise();
+ mainwindow_mainmenu->hide();
}
MainWindow::~MainWindow()