tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy
Thu, 03 Sep 2015 15:01:55 -0400
changeset 11072 532141feeebf
parent 11015 7a905f0070ce
permissions -rw-r--r--
Updated shoppa tournament winners

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

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

    return a.exec();
}