tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Thu, 25 Oct 2018 04:55:27 +0300
changeset 13960 0e2fd51c4a52
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix some of Wuzzy's rage

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

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

    return a.exec();
}