- More accurate rope collision detection
- Implement hedgehog on rope speed limit
- All this should prevent rope to be stuck in the ground
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}