1 #include "levelwindow.h"
2 #include "levelwindowgui.h"
6 LevelWindow::LevelWindow(MWindow *mwindow)
9 this->mwindow = mwindow;
10 Thread::set_synchronous(1);
13 LevelWindow::~LevelWindow()
23 int LevelWindow::create_objects()
25 gui = new LevelWindowGUI(mwindow, this);
26 gui->create_objects();
31 void LevelWindow::run()
33 if(gui) gui->run_window();
38 // c-file-style: "linux"