now Random Weapons will show the weapon you will get during the other players turns
not tested online yet, would be happy if someone could and report to me results
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}