tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sat, 05 Mar 2016 16:46:04 +0300
changeset 11591 7c9243584a72
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix TechRacer not recoding finish if time was >= 100s by raising this limit ten times.

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

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

    return a.exec();
}