tools/templates/main.cpp
author sheepluva
Sun, 30 Oct 2011 21:19:47 +0100
changeset 6244 23801d8b83d5
parent 359 59fbfc65fbda
permissions -rw-r--r--
don't let forced hog movement (with no damage) suspend/halt shot charging this also caused frozen turns in combination with bee, as reported by Djrulz1

#include <QApplication>

#include "mainform.h"

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