tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Feb 2018 06:03:01 +0100
changeset 12932 e0da398805b6
parent 11015 7a905f0070ce
permissions -rw-r--r--
Lua API: Add SpawnSupplyCrate

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

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

    return a.exec();
}