tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 27 Oct 2018 13:27:45 +0200
changeset 14011 3c40754f6cfe
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add Grenade taunt when grenade close to hog is about to blow up

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

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

    return a.exec();
}