tools/templates/main.cpp
author sheepluva
Wed, 10 Dec 2014 22:33:09 +0100
changeset 10649 d83897fed816
parent 359 59fbfc65fbda
permissions -rw-r--r--
small shell script that accepts hedgewars git revisions as parameters and will try to find the respective mercurial revision

#include <QApplication>

#include "mainform.h"

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