Engine:
* Reenabled centering of non-fullscreen window under Win32
Frontend:
* Ensure different team names as well as hats in quick games
#include <QtGui/QApplication>
#include "editor.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
editor w;
w.show();
return a.exec();
}