tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 15 Jan 2019 21:28:54 +0100
changeset 14597 6d2954037e57
parent 11015 7a905f0070ce
permissions -rw-r--r--
Make hog kill stat stuff consistent WRT SD water rise

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

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

    return a.exec();
}