tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 20 Feb 2018 15:31:47 +0100
changeset 13042 3718637c14be
parent 11015 7a905f0070ce
permissions -rw-r--r--
Expose 5 land flags to Lua for use with SetGearCollisionMask

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

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

    return a.exec();
}