tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Tue, 24 Oct 2017 21:58:41 +0200
changeset 12761 7cbf26454b1f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove silly toUtf8 which caused bug with default team name

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

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

    return a.exec();
}