tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 23 Feb 2018 22:43:34 +0100
changeset 13064 6766b900ab13
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove false credit of hwmap2lua.sh

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

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

    return a.exec();
}