fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}