tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 16 Mar 2018 16:35:08 +0100
changeset 13232 26c739440bef
parent 11015 7a905f0070ce
permissions -rw-r--r--
Some padding tweaks in options and team editor pages. Fixes insane width of context menu of hog name line edit

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

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

    return a.exec();
}