tools/MissionsEditor/main.cpp
author nemo
Fri, 29 Oct 2010 13:19:33 -0400
changeset 4014 e9baae83370b
parent 2572 af96861683f8
permissions -rw-r--r--
Avoid doing this stuff twice, even if CheckForWin is called twice

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

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