tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 09:35:45 +0200
changeset 12502 f4b0e164a0d5
parent 4425 2314bb0c433d
permissions -rw-r--r--
Chance that clicking the random hats button produces a set of equal hats

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

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