Experiment. This has bugged me for a long time. Should be possible to tell a team with 1 health from a team with 0
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}