tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Oct 2017 02:50:05 +0200
changeset 12768 de849964161d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Complete music credits for Jungle.ogg by alfadur

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

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