tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 28 Oct 2018 00:49:00 +0200
changeset 14024 03a5d9f0bcc9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Play sndStupid on round draw instead of sndNutter

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

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