tools/templates/main.cpp
author unc0rr
Fri, 09 May 2008 12:58:10 +0000
changeset 921 8dd71d960cbc
parent 359 59fbfc65fbda
permissions -rw-r--r--
If there's more hedgehogs in AI's team than in others, then it will be less afraid to give damage to friend hedgehog

#include <QApplication>

#include "mainform.h"

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