tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 11 Oct 2019 16:54:50 +0200
changeset 15463 a7d54832fad6
parent 11015 7a905f0070ce
permissions -rw-r--r--
Show message when failing to record demo/video due to /lua

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

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

    return a.exec();
}