tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 18 Jan 2019 07:24:39 +0100
changeset 14653 5132548cdb77
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add workaround around an SDL_mixer bug that screws up volume after using flamethrower (bug #721)

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

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

    return a.exec();
}