tools/MissionsEditor/main.cpp
author Carlos Vives <glykorin@gmail.com>
Sun, 31 Oct 2010 23:13:00 +0100
changeset 4068 ffa4ff9749ee
parent 2572 af96861683f8
permissions -rw-r--r--
Merged changes

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

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