tools/drawMapTest/main.cpp
author koda
Sat, 14 Nov 2015 03:22:20 +0100
branchsdl2transition
changeset 11379 7bc9042549c1
parent 4425 2314bb0c433d
permissions -rw-r--r--
Drop all GLUT references It was needed to create the hidden videorec window, now SDL2 offers this feature natively.

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

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