tools/drawMapTest/main.cpp
author sheepluva
Sun, 02 Oct 2016 00:42:29 +0200
changeset 11858 38fd32724a61
parent 4425 2314bb0c433d
permissions -rw-r--r--
and while I'm at it, fix seduction... kinda ♥

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

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