tools/templates/main.cpp
author unc0rr
Fri, 14 Dec 2007 16:13:35 +0000
changeset 660 7c155e849602
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Simplify net game objects relationship - Fix statistics page bug caused by recent protocol changes

#include <QApplication>

#include "mainform.h"

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