tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 13 Apr 2016 17:59:13 -0400
changeset 11649 1fd1525653d8
parent 11015 7a905f0070ce
permissions -rw-r--r--
SDL blit wraps at 16,384 - not the first time that routine has disappointed us.

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

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

    return a.exec();
}