tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 03 Aug 2019 01:13:45 +0300 (2019-08-02)
changeset 15286 16bd389fc735
parent 11015 7a905f0070ce
permissions -rw-r--r--
ship the atlas to the gpu
#include "mainwindow.h"
#include <QApplication>

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

    return a.exec();
}