tools/templates/main.cpp
author unc0rr
Sun, 06 Jul 2008 21:52:07 +0000
changeset 1058 c53c5c4e7b48
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Proper turns counting, split SwitchHedgehog into two functions - Health decrease afte r15 turns of each team, water rise after 17 turns

#include <QApplication>

#include "mainform.h"

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