tools/MissionsEditor/main.cpp
author palewolf
Tue, 30 Mar 2010 20:31:28 +0000
changeset 3190 90b1a25fa7e2
parent 2572 af96861683f8
permissions -rw-r--r--
Bad Palewolf, don't commit flags as hats

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

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