tools/drawMapTest/main.cpp
author unc0rr
Thu, 28 Nov 2013 00:41:35 +0400
changeset 9720 453a1c29b7e4
parent 4425 2314bb0c433d
permissions -rw-r--r--
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.

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

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