tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Mon, 30 Jul 2018 19:23:28 +0200
changeset 13574 9c83afd65e8c
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

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