tools/templates/main.cpp
author nemo
Tue, 17 Feb 2015 12:09:27 -0500
changeset 10830 f3e903ace2d3
parent 359 59fbfc65fbda
permissions -rw-r--r--
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *

#include <QApplication>

#include "mainform.h"

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