tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 28 Sep 2017 07:45:28 +0200
changeset 12573 a778c1bb032e
parent 11015 7a905f0070ce
permissions -rw-r--r--
ASA: Explain team abbreviations + update changelog

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

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

    return a.exec();
}