tools/hwmap2txt/hwmapconverter/main.cpp
author Grigory Ustinov <grenka@altlinux.org>
Sat, 28 Sep 2019 01:20:49 +0300
changeset 15475 3ff8499de902
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove executable flag of missions_pt.txt

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

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

    return a.exec();
}