tools/MissionsEditor/main.cpp
author koda
Wed, 25 Nov 2009 04:27:53 +0000
changeset 2641 b08cafb86797
parent 2572 af96861683f8
permissions -rw-r--r--
some tweaks in the mac compilation system

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

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