tools/drawMapTest/main.cpp
author sheepluva
Tue, 12 Jan 2016 21:21:44 +0100
changeset 11500 3a4026fe7c18
parent 4425 2314bb0c433d
permissions -rw-r--r--
use MIX_DEFAULT_FORMAT for sound

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

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