/* 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() { } }