tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 07 Apr 2017 02:26:12 +0200
changeset 12186 c6984784c9fb
parent 4425 2314bb0c433d
permissions -rw-r--r--
Harden the countdown sound check

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

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