tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 13 Oct 2017 17:09:45 +0200
changeset 12705 16fcd59295e3
parent 359 59fbfc65fbda
permissions -rw-r--r--
Don't switch back to rope/chute/jetpack if selected ammo is not ammoprop_AltUse This fixes a regression like that you can't shoryuken after rope.

#include <QApplication>

#include "mainform.h"

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