- Temporary set delimiter to *, as \t seems to be endline now in Qt
- Fix network game: avoid telling server the nick before it actually is set on fast network (found on FreeBSD)
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}