tools/drawMapTest/main.cpp
author sheepluva
Tue, 04 Feb 2014 19:45:22 +0100
changeset 10108 c68cf030eded
parent 4425 2314bb0c433d
permissions -rw-r--r--
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers

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

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