tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 04 Oct 2017 18:34:02 +0200
changeset 12649 59b46e6f36ff
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix Birdy descending into water if hog took damage before it got picked up (bug #160)

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

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