tools/drawMapTest/main.cpp
author koda
Tue, 25 Sep 2012 02:25:22 +0200
changeset 7707 e7e7b2082f44
parent 4425 2314bb0c433d
permissions -rw-r--r--
sdl_extras updated/fixed (is this file still needed?)

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

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