tools/drawMapTest/main.cpp
author nemo
Tue, 17 Feb 2015 12:09:27 -0500
changeset 10830 f3e903ace2d3
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}