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();
}