tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sat, 13 Feb 2016 00:36:38 +0300
changeset 11545 86528b0cd491
parent 11015 7a905f0070ce
permissions -rw-r--r--
detectMap() rewrite with more sane approach, also check waypoints placement to avoid cheating

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

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

    return a.exec();
}