tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Tue, 10 Oct 2017 02:00:04 +0200
changeset 12680 5a253f158071
parent 4425 2314bb0c433d
permissions -rw-r--r--
Eliminate some possible spoilers in stats screen of ASA: fruit02

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

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