tools/MissionsEditor/main.cpp
author koda
Sun, 31 Oct 2010 01:49:20 +0200
changeset 4028 eb371ada631d
parent 2572 af96861683f8
permissions -rw-r--r--
move functions called by pascal code outside controller

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

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