tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Fri, 20 May 2022 17:24:14 -0400
changeset 15873 9bb85e43e492
parent 11015 7a905f0070ce
permissions -rw-r--r--
add more checks on nil current hedgehog gear, remove checks on nil current hedgehog which should never happen.

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

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

    return a.exec();
}