tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 03 Nov 2018 09:08:13 +0300
changeset 14118 be4419243735
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix normal offset for split points and make directions more consistent

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

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

    return a.exec();
}