tools/drawMapTest/main.cpp
author alfadur
Fri, 28 Apr 2017 17:49:15 +0200
changeset 12376 c80c51f59a98
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make hogs keep their hat when holding the baseball bat

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

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