tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 07 Dec 2019 16:14:27 +0100
branchhedgeroid
changeset 15533 fb23e49b2d4e
parent 11015 7a905f0070ce
permissions -rw-r--r--
hedgeroid: fix needlessly creating netplay instance on check for "connecting..."

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

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

    return a.exec();
}