tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 04 May 2016 19:42:20 +0200
changeset 11814 f412d539284e
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add various “What's This?” texts to multiplayer, net and team editor frontend pages

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

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

    return a.exec();
}