tools/MissionsEditor/editor.cpp
author koda
Sun, 25 Oct 2009 10:39:12 +0000 (2009-10-25)
changeset 2582 e16668bac20f
parent 2572 af96861683f8
child 2583 f8da275981e5
permissions -rw-r--r--
fix build
#include "editor.h"
#include "ui_editor.h"

editor::editor(QWidget *parent)
    : QMainWindow(parent), ui(new Ui::editor)
{
    ui->setupUi(this);
}

editor::~editor()
{
    delete ui;
}