If there's more hedgehogs in AI's team than in others, then it will be less afraid to give damage to friend hedgehog
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}