tools/templates/main.cpp
author nemo
Tue, 03 Dec 2013 12:10:51 -0500
changeset 9742 419e5c651870
parent 359 59fbfc65fbda
permissions -rw-r--r--
Remove turntimeleft/hog gear check from smine if infinite attack is enabled. just use the flightime for that.

#include <QApplication>

#include "mainform.h"

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