tools/MissionsEditor/main.cpp
author nemo
Mon, 04 Oct 2010 14:03:59 -0400
changeset 3925 44b4218605f6
parent 2572 af96861683f8
permissions -rw-r--r--
Missing file extensions for icons was screwing up Qt 4.7

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

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