tools/MissionsEditor/main.cpp
author nemo
Tue, 30 Mar 2010 17:50:58 +0000
changeset 3183 9f51543d173b
parent 2572 af96861683f8
permissions -rw-r--r--
typo in template 41 definition. using FPoints from 40

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

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