tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sun, 16 Dec 2018 00:12:29 +0100
changeset 14457 98ef2913ec73
parent 11015 7a905f0070ce
permissions -rw-r--r--
Apply rustfmt to all files

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

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

    return a.exec();
}