tools/MissionsEditor/main.cpp
author palewolf
Sun, 28 Mar 2010 23:41:58 +0000
changeset 3151 3f23113d9df4
parent 2572 af96861683f8
permissions -rw-r--r--
AfterAttack was issued twice

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

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