Fix desyncs when forcing rope re-selection after missing a shot or hitting bounce world edge
Also re-introduce rope-reselection when touching ground
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}