tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 03 Aug 2019 00:54:29 +0300
changeset 15285 6382a14c9e83
parent 11015 7a905f0070ce
permissions -rw-r--r--
add an empty texture constructor

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

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

    return a.exec();
}