tools/drawMapTest/main.cpp
author Xeli
Mon, 20 Feb 2012 21:55:59 +0100
changeset 6727 b3160a49f02e
parent 4425 2314bb0c433d
permissions -rw-r--r--
incremental loading of all the images in teamcreation on android, this should really be rewritten though..

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

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