tools/drawMapTest/main.cpp
author Medo <smaxein@googlemail.com>
Thu, 05 Jul 2012 22:22:48 +0200
changeset 7318 a446eafcddeb
parent 4425 2314bb0c433d
permissions -rw-r--r--
Improved asset moving time by an order of magnitude (3s vs. 25s on my device)

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

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