tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Mon, 30 Jul 2018 19:23:28 +0200
changeset 13574 9c83afd65e8c
parent 11015 7a905f0070ce
permissions -rw-r--r--
ASA, final mission: Redraw map and mask to make borders more distingushable Also fix floating green dashes after blowing up things

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

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

    return a.exec();
}