Fix server bugs:
- Wrong room destryed notification
- Not proper notifying when room master quits
- smth else I forgot already
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}