tools/templates/main.cpp
author unc0rr
Fri, 29 Aug 2008 21:05:31 +0000
changeset 1238 914bd2a9a249
parent 359 59fbfc65fbda
permissions -rw-r--r--
Add hat selection control to team editing page (it's empty combobox yet)

#include <QApplication>

#include "mainform.h"

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