tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sat, 27 Feb 2016 09:44:13 +0300
changeset 11577 bee3a2f8e117
parent 11015 7a905f0070ce
permissions -rw-r--r--
Finish implementation of ghost points served from server, not tested

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

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

    return a.exec();
}