tools/MissionsEditor/main.cpp
author sheepluva
Thu, 06 May 2010 01:43:56 +0000
changeset 3429 1f12646331d4
parent 2572 af96861683f8
permissions -rw-r--r--
removed debug string I thought I deleted already.. wth...

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

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