tools/MissionsEditor/main.cpp
author nemo
Mon, 08 Feb 2010 12:49:58 +0000
changeset 2767 77c030ac978e
parent 2572 af96861683f8
permissions -rw-r--r--
Yay for burning through revision numbers

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

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