tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Feb 2018 12:08:12 +0100
changeset 12938 b075ad6112c9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Show subtle heal effect for healing hogs in health reset mode

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

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