tools/MissionsEditor/main.cpp
author nemo
Sun, 14 Mar 2010 17:04:36 +0000
changeset 2989 b49d87499398
parent 2572 af96861683f8
permissions -rw-r--r--
Add back sheepluva's 45° patch for some weapons. Rescale Tiy's latest icons to his specifications.

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

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