tools/MissionsEditor/main.cpp
author koda
Thu, 05 Nov 2009 20:47:42 +0000
changeset 2602 3deb9ff104da
parent 2572 af96861683f8
permissions -rw-r--r--
update themes cmakefiles to use GLOB instead of listing all the files

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

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