tools/templates/main.cpp
author unc0rr
Sun, 28 Sep 2008 15:55:07 +0000
changeset 1293 5943efa67299
parent 359 59fbfc65fbda
permissions -rw-r--r--
Predefined team can have customized hat

#include <QApplication>

#include "mainform.h"

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