tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 10 Jan 2016 18:01:17 +0100
changeset 11492 8e221d2a368e
parent 11015 7a905f0070ce
permissions -rw-r--r--
don't attempt to prettify alpha of single-pixel textures (segfault with "digital" theme from forums)

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

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

    return a.exec();
}