tools/MissionsEditor/main.cpp
author nemo
Sun, 21 Mar 2010 03:51:53 +0000
changeset 3028 d17cf923d7c3
parent 2572 af96861683f8
permissions -rw-r--r--
Add a 2nd timer variable due to conflicts. This could perhaps use renaming

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

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