tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 30 Sep 2018 01:41:12 +0200
changeset 13822 419de2dea82b
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix frontend displayed value of Sudden Death timeout being off-by-one

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

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

    return a.exec();
}