tools/MissionsEditor/main.cpp
author koda
Sun, 31 Oct 2010 18:04:02 +0100
changeset 4034 634a8c8682de
parent 2572 af96861683f8
permissions -rw-r--r--
add some phone rumbling to big explosions, airbomb and sinegun really have mine timer go up to 5 seconds

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

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