tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 11 Oct 2019 20:18:07 +0200
branch1.0.0
changeset 15476 9a76589e294e
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove unicode chars in *.pas files

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

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

    return a.exec();
}