tools/drawMapTest/main.cpp
author nemo
Wed, 26 Jun 2013 21:40:10 -0400
changeset 9277 ad1ec7212ac7
parent 4425 2314bb0c433d
permissions -rw-r--r--
reduce shove frequency (perf). reduce dX so that less time is spent sliding.

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

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