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/menuwindow.cc')
-rw-r--r--src/client/menuwindow.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/client/menuwindow.cc b/src/client/menuwindow.cc
new file mode 100644
index 0000000..8ebd0cb
--- /dev/null
+++ b/src/client/menuwindow.cc
@@ -0,0 +1,32 @@
+/*
+ client/menuwindow.cc
+ This file is part of the Osirion project and is distributed under
+ the terms and conditions of the GNU General Public License version 2
+*/
+
+#include "client/menuwindow.h"
+
+namespace client
+{
+
+MenuWindow::MenuWindow(ui::Widget *parent) : ui::Widget(parent)
+{
+ set_border(true);
+ set_background(true);
+}
+
+MenuWindow::~MenuWindow()
+{
+}
+
+void MenuWindow::resize()
+{
+}
+
+void MainWindow::draw_background()
+{
+
+
+}
+
+}