tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 22 Mar 2018 18:40:21 +0100
changeset 13269 a772b6c9387f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Improve Sudden Death theming of Eyes and Deepspace

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

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

    return a.exec();
}