tools/drawMapTest/main.cpp
author sheepluva
Fri, 29 Sep 2017 22:06:29 +0200
changeset 12591 7bae1fab444b
parent 4425 2314bb0c433d
permissions -rw-r--r--
currently irrelevant sdl call adjustment as suggested by https://wiki.libsdl.org/MigrationGuide

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

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