tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 22 Jan 2019 18:00:08 +0100
changeset 14667 35fc8266a1e3
parent 11015 7a905f0070ce
permissions -rw-r--r--
ACF8: Fix princess scene failing to initialize

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

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

    return a.exec();
}