tools/hwmap2txt/hwmapconverter/main.cpp
author KoBeWi
Thu, 08 Feb 2018 08:50:45 +0100
changeset 12922 c0320d66310d
parent 11015 7a905f0070ce
permissions -rw-r--r--
Keep game/weapon schemes in separate files

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

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

    return a.exec();
}