tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 04 Oct 2017 15:37:42 +0200
changeset 12646 f30b70976577
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix cake taking >200s to explode when it's completely stuck and can't move (bug #194)

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

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