tools/templates/main.cpp
author unc0rr
Thu, 13 Dec 2007 22:24:06 +0000
changeset 655 e58a77556878
parent 359 59fbfc65fbda
permissions -rw-r--r--
- 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();
}