tools/templates/main.cpp
author unc0rr
Fri, 02 Jan 2009 13:00:46 +0000
changeset 1558 3370b7ffeb5c
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Send previous moves info to newly connected client when it joins a room with already started game - Shows a bug in frontend which needs to be fixed

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}