tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 27 Sep 2017 06:17:41 +0200 (2017-09-27)
changeset 12558 a401aec4df64
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix ACF2 mission sometimes being unwinnable after returning to Leaks A Lot After accepting cyborgs offer, combat should normally start after walking past the tree. This sometimes didn't work, the mission did not advance and you could never win, even after defeating the Stronglings.
#include <QApplication>

#include "mainform.h"

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