tools/MissionsEditor/main.cpp
author koda
Sat, 16 Oct 2010 18:53:56 +0200
changeset 3979 a590321a2fbd
parent 2572 af96861683f8
permissions -rw-r--r--
goodbye Barrelhouse and Island forts, we've had a good time together but now we must move on

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

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