tools/MissionsEditor/main.cpp
author koda
Thu, 24 Dec 2009 13:38:20 +0000
changeset 2670 1b327b7515ed
parent 2572 af96861683f8
permissions -rw-r--r--
regression, powerpc colors working again

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

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