tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 05 Apr 2017 18:23:10 +0200
changeset 12167 1ce6ee2525db
parent 11015 7a905f0070ce
permissions -rw-r--r--
Simplify the background gradient of Beach theme, fixes ugly “stripe” at borders

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

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

    return a.exec();
}