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

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

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

    return a.exec();
}