tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Tue, 02 May 2017 21:16:07 +0200
changeset 12395 c051ac2544f2
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add note in Diver scenario that jetpack only has 50% fuel

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

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

    return a.exec();
}