tools/drawMapTest/main.cpp
author unc0rr
Wed, 17 Aug 2011 21:26:34 +0400
changeset 5592 662ebb46642f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Free messages queue on engine shutdown

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

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