tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Sun, 15 May 2016 10:43:18 +0200
changeset 11807 93621207563b
parent 11015 7a905f0070ce
permissions -rw-r--r--
avrec crash/math fix (sheepy here, committing koda's fix because I'm tired of having it lying around in my repo :P

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

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

    return a.exec();
}