tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 31 Aug 2018 12:09:40 +0200
changeset 13724 7edaeca8f816
parent 11015 7a905f0070ce
permissions -rw-r--r--
BRW: Add utilities and air weapons properly

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

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

    return a.exec();
}