tools/MissionsEditor/main.cpp
author sheepluva
Sat, 27 Mar 2010 03:39:35 +0000
changeset 3095 63f1d0f13c5a
parent 2572 af96861683f8
permissions -rw-r--r--
tweaked hellish impact sound a bit. and yeah, we really need to limit how frequently impact sounds can be triggered on bounce >.<

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

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