- Shut the client's tries to configure server up
- Fix a bug which led to "different maps generated" when server changes map, but theme doesn't get changed
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}