tools/drawMapTest/main.cpp
author alfadur
Sat, 27 Oct 2018 03:58:01 +0300
changeset 14004 a24c4a051960
parent 4425 2314bb0c433d
permissions -rw-r--r--
Tweak firepunch sound that Wuzzy found

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

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