tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 01 Oct 2017 09:42:17 +0200
changeset 12634 be1ee010e30d
parent 11015 7a905f0070ce
permissions -rw-r--r--
Nobody Laugh mission: Set bot level to maximum because the player is supposed to win before the time runs out

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

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

    return a.exec();
}