tools/drawMapTest/main.cpp
author sheepluva
Wed, 05 Jun 2013 15:27:00 +0200
changeset 9131 07f3bf8d98a3
parent 4425 2314bb0c433d
permissions -rw-r--r--
Hedgewars.png had a resolution more than twice as high as required; also fixed some (mostly obsolete) code that also contained a typo that would cause a warning/note in clang

#include <QtGui/QApplication>
#include "mainwindow.h"

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