tools/MissionsEditor/main.cpp
author nemo
Sun, 31 Oct 2010 12:19:54 -0400
changeset 4046 cfdbddc4b385
parent 2572 af96861683f8
permissions -rw-r--r--
making indentation consistent (noticed while debugging)

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

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