tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 07 Jun 2020 00:44:13 +0200
changeset 15604 22d0a3d6e2be
parent 11015 7a905f0070ce
permissions -rw-r--r--
Teach AI how to use MineStrike (0 secs only)

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

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

    return a.exec();
}