tools/MissionsEditor/main.cpp
author koda
Wed, 07 Apr 2010 15:54:15 +0000
changeset 3321 988e39ef3c20
parent 2572 af96861683f8
permissions -rw-r--r--
rewrote a couple of things i didn't like

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

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