tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 22 Mar 2018 00:17:13 +0100
changeset 13267 2877c1ec5877
parent 11015 7a905f0070ce
permissions -rw-r--r--
Change CrazyMission preview, change portal map theme to Hell

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

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

    return a.exec();
}