tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Tue, 01 Jan 2019 02:25:18 +0100
changeset 14512 184df3900ec4
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Bots activate extra time if needed - Refactor work with forecast of time needed to perform planned actions (ticks variable)

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

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

    return a.exec();
}