tools/MissionsEditor/main.cpp
author smxx
Sat, 06 Mar 2010 01:09:14 +0000
changeset 2943 d61bee34402c
parent 2572 af96861683f8
permissions -rw-r--r--
*SVGs for updated PNGs

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

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