tools/templates/main.cpp
author unc0rr
Thu, 09 Oct 2008 16:03:27 +0000
changeset 1334 b58afaadf7ae
parent 359 59fbfc65fbda
permissions -rw-r--r--
Send team removal message to others in room when client disconnects

#include <QApplication>

#include "mainform.h"

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