- Fix a bug with chosen map (new clinet gets wrong information)
- Fix mapContainer bug when switching quickly from random map to a painted one
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}