tools/drawMapTest/main.cpp
author sheepluva
Wed, 20 Jan 2016 00:57:09 +0100
changeset 11518 02a13be714d2
parent 4425 2314bb0c433d
permissions -rw-r--r--
SDL2: fix toggling fullscreen. dunno how well this works on non-linux-OS if it works well, then resizing could be made way more responsive too

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

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