tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Fri, 06 May 2016 20:00:55 +0200
changeset 11805 42c11b73f68e
parent 11015 7a905f0070ce
permissions -rw-r--r--
<unC0Rr> might be somewhere width used instead of rightx

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

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

    return a.exec();
}