tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Wed, 02 Sep 2015 01:25:29 +0200
changeset 11059 659427d9fd17
parent 11015 7a905f0070ce
permissions -rw-r--r--
display circle for custom build dist values, display nothing if no limit. map borders are not taken into account at this point

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

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

    return a.exec();
}