tools/MissionsEditor/main.cpp
author unc0rr
Sat, 26 Jun 2010 16:56:02 +0400
changeset 3563 48452ee0c925
parent 2572 af96861683f8
permissions -rw-r--r--
merge

#include <QtGui/QApplication>
#include "editor.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    editor w;
    w.show();
    return a.exec();
}