tools/templates/main.cpp
author unc0rr
Mon, 13 Oct 2008 18:37:59 +0000
changeset 1350 99a921e292f4
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Reverse the order of client list - Add 'game in progress' room state to implement support of in-game disconnects notification

#include <QApplication>

#include "mainform.h"

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