Longer delays between turns for better readability
The control was given too fast to the next hog, this made it hard to see damage and messages.
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}