tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sun, 05 Jul 2020 04:00:29 +0300
changeset 15670 dc965b82ed13
parent 11015 7a905f0070ce
permissions -rw-r--r--
add basic jumping to sentries

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

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

    return a.exec();
}