tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 06 Jan 2018 03:05:14 +0100
branchqmlfrontend
changeset 12886 07a267d72fce
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix issues and my past sins with GL2 remaining issue: tintadd (crosshair)

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

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

    return a.exec();
}