tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 01 Oct 2017 09:42:17 +0200
changeset 12634 be1ee010e30d
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

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