tools/drawMapTest/main.cpp
author sheepluva
Mon, 25 Apr 2016 16:11:39 +0200
changeset 11698 e86feecadced
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix issue #12: “Yoohoo” sound for seduction is missing

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

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