tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 24 Oct 2018 11:05:44 -0400
changeset 13975 cc312e22592b
parent 11015 7a905f0070ce
permissions -rw-r--r--
disable basic comment support 'cause lua is nuts

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

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

    return a.exec();
}