tools/MissionsEditor/main.cpp
author palewolf
Fri, 09 Apr 2010 00:01:53 +0000
changeset 3326 7f57fc2bf630
parent 2572 af96861683f8
permissions -rw-r--r--
Fix splashes for older graphics cards

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

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