tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 23 Apr 2016 12:02:39 +0200
changeset 11673 86cacfde14c4
parent 11015 7a905f0070ce
permissions -rw-r--r--
merge commit by Wuzzy that allows drop down lists in team edit screen to display more items at a time, if possible

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

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

    return a.exec();
}