tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 28 Oct 2018 04:21:13 +0100
changeset 14056 ecfd13128100
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add taunts: Leavemealone, Cutitout (when attacked many times)

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

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

    return a.exec();
}