tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 11 Oct 2019 13:33:56 +0200
changeset 15484 b9b48e8b5ec4
parent 11015 7a905f0070ce
permissions -rw-r--r--
Display invuln icon in gfInvulnerable mode

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

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

    return a.exec();
}