tools/drawMapTest/main.cpp
author nemo
Mon, 04 Dec 2017 20:21:35 -0500
changeset 12849 40c410cd6402
parent 4425 2314bb0c433d
permissions -rw-r--r--
rock the duck a bit - also replace a few other values with realtick that seemed like they should probably animate in pause

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

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