tools/drawMapTest/main.cpp
author nemo
Wed, 13 Mar 2013 21:02:26 -0400
changeset 8730 b39f433f8ab4
parent 4425 2314bb0c433d
permissions -rw-r--r--
at vatten's request. make resurrection always resurrect at least 1 hp out of kindness to noobs who can't be bothered to read tooltips

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

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