tools/drawMapTest/main.cpp
author sheepluva
Sat, 03 Dec 2016 17:45:32 +0100
changeset 12100 166725555e57
parent 4425 2314bb0c433d
permissions -rw-r--r--
GOTTA GO FAST! - speed up landtex filling

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

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