tools/MissionsEditor/main.cpp
author unc0rr
Sun, 07 Nov 2010 20:38:56 +0300
changeset 4183 646fc9e96ce2
parent 2572 af96861683f8
permissions -rw-r--r--
My wife now

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

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