tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Feb 2018 19:58:55 +0100
changeset 12946 1a1a514aef2e
parent 11015 7a905f0070ce
permissions -rw-r--r--
Construction Mode: Each team remembers its selections now

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

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

    return a.exec();
}