tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 07 Mar 2020 01:04:37 +0300
changeset 15547 863059f61793
parent 11015 7a905f0070ce
permissions -rw-r--r--
add loading config from hwd to server

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

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

    return a.exec();
}