tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Tue, 13 Nov 2018 01:56:42 +0300
changeset 14200 1bdce164eb72
parent 11015 7a905f0070ce
permissions -rw-r--r--
stun airmines on shove

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

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

    return a.exec();
}