tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Thu, 16 Jul 2015 22:16:35 +0200
changeset 11017 16c47a5573e4
parent 11015 7a905f0070ce
permissions -rw-r--r--
change theme used by sniper training, for performance reasons

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

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

    return a.exec();
}