tools/MissionsEditor/main.cpp
author koda
Wed, 25 Aug 2010 00:17:51 +0200
changeset 3765 ebfe7c9b3085
parent 2572 af96861683f8
permissions -rw-r--r--
set flake to non critical, no touches until game is starding, moved some variables to be initialized in the right place

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

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