tools/templates/main.cpp
author nemo
Sun, 07 Aug 2011 11:18:49 -0400
changeset 5507 1040c0946ef8
parent 359 59fbfc65fbda
permissions -rw-r--r--
This should make bee/airstrikes play nicer with infinite attack mode

#include <QApplication>

#include "mainform.h"

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