tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Feb 2018 14:20:36 +0100
changeset 12958 c0746aa9944d
parent 11015 7a905f0070ce
permissions -rw-r--r--
Redraw Vampiric.png based on vector graphic. Smooth fade out to 0 opacity instead of hard cut-off

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

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

    return a.exec();
}