tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 04 Dec 2016 02:02:18 +0100
changeset 12102 51596d30a724
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix chat SDL surfaces being in wrong color format (didn't play well with copyToXY's new quick pixel copies)

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

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

    return a.exec();
}