tools/MissionsEditor/main.cpp
author koda
Sat, 01 May 2010 21:53:31 +0000
changeset 3394 47b51e22e670
parent 2572 af96861683f8
permissions -rw-r--r--
Henek's patch - adds a column to ammoMenu and removes the F* column in iphone version

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

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