tools/MissionsEditor/main.cpp
author koda
Thu, 17 Jun 2010 20:37:49 +0200
changeset 3515 3e8635f43972
parent 2572 af96861683f8
permissions -rw-r--r--
fix cmakefiles to work with mercurial

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

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