tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Tue, 26 Jul 2022 12:37:17 +0200
changeset 15852 c4561095666a
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix texture copying routine not taking pitch into account

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

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

    return a.exec();
}