tools/MissionsEditor/main.cpp
author nemo
Sun, 01 Aug 2010 09:17:59 -0400
changeset 3699 e5e2cbc90891
parent 2572 af96861683f8
permissions -rw-r--r--
Let's try this instead.

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

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