tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Fri, 30 Oct 2015 16:04:51 -0400
changeset 11262 6d5505bff3f3
parent 11015 7a905f0070ce
permissions -rw-r--r--
refocus camera on roping hog. totally untested.

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

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

    return a.exec();
}