tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 18 Dec 2018 15:21:23 +0100
changeset 14468 bd1db668b7c0
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add Lua functions to save/get mission variables

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

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

    return a.exec();
}