tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 17 Jan 2019 01:35:43 +0100
changeset 14625 835072bcbfb6
parent 11015 7a905f0070ce
permissions -rw-r--r--
Animate lib: AnimOutOfNowhere's 2nd and 3rd args are now optional

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

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

    return a.exec();
}