tools/templates/main.cpp
author unc0rr
Fri, 02 Jan 2009 20:01:02 +0000
changeset 1569 4456a0dfc647
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Update some copyrights - Don't show users list in server message to those who can see it in lobby chat

#include <QApplication>

#include "mainform.h"

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