tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 28 Sep 2017 18:39:59 +0200
changeset 12577 e2b5c6e805e8
parent 4425 2314bb0c433d
permissions -rw-r--r--
A Space Adventure: Remove or shorten intro sequences of side missions Also increase initial ready time in death02 and fruit03

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

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