tools/templates/main.cpp
author unc0rr
Thu, 16 Oct 2008 19:48:11 +0000
changeset 1368 a734715a777a
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Frontend: don't reset playing teams list after end of round - Server: same + don't allow team adding while round in progress

#include <QApplication>

#include "mainform.h"

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