tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sat, 21 May 2016 15:23:08 -0400
changeset 11831 dd18d8100afd
parent 11015 7a905f0070ce
permissions -rw-r--r--
Change this back to allowing hooking rope to hogs again, 'cause, well, rage...

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

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

    return a.exec();
}