tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 11 Jul 2019 05:07:55 +0200
changeset 15233 1dd99fc2a0e8
parent 11015 7a905f0070ce
permissions -rw-r--r--
Air attack: Replace smoke with bubbles when underwater

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

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

    return a.exec();
}