tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 20:25:44 +0100
changeset 12048 475a1289f940
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix game extremely slowing down if hog collects crate with huge health, or vampire gets huge health.

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

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