fix the multitouch shooting and moving
fix a crash (unknown) when reloading
leave the lobby open after returing from game
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}