tools/templates/main.cpp
author unc0rr
Sat, 24 Feb 2007 17:25:59 +0000
changeset 493 0c0ed17ad675
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix warning - Fix 'New team' button in net game - Update copyright info in README

#include <QApplication>

#include "mainform.h"

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