tools/drawMapTest/main.cpp
author koda
Sat, 06 Jul 2013 19:29:18 +0200
changeset 9317 a04c30940d2d
parent 4425 2314bb0c433d
permissions -rw-r--r--
use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation

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

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