tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 27 Oct 2017 05:28:32 +0200
changeset 12784 f12337d90d03
parent 4425 2314bb0c433d
permissions -rw-r--r--
ACF7: Fix no animation starting for some possible scenes

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

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