tools/templates/main.cpp
author dag10
Mon, 21 Jan 2013 02:21:04 -0500
changeset 8416 e691acd778f5
parent 359 59fbfc65fbda
permissions -rw-r--r--
It is now possible to start a game even if not all players are "ready"; a confirmation prompt is shown. This commit updates the server. Unless the official server is updated, this commit will do nothing new.

#include <QApplication>

#include "mainform.h"

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