tweaked hedgehog sprite (gstLoser and such) this version tries to clean up a bit of the pixelation from having not been edited in inkscape
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}