tools/drawMapTest/main.cpp
author nemo
Sun, 30 Jun 2013 21:37:29 -0400
changeset 9305 8e5140875ab5
parent 4425 2314bb0c433d
permissions -rw-r--r--
bug #668 + reorder conditions for kick slightly, to call the math last

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

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