changeset 2572 | af96861683f8 |
child 2583 | f8da275981e5 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/MissionsEditor/editor.cpp Wed Oct 21 16:40:55 2009 +0000 @@ -0,0 +1,13 @@ +#include "editor.h" +#include "ui_editor.h" + +editor::editor(QWidget *parent) + : QMainWindow(parent), ui(new Ui::editor) +{ + ui->setupUi(this); +} + +editor::~editor() +{ + delete ui; +}