tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 12 May 2017 16:53:29 +0200
changeset 12410 8b971d8944d6
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove the buggy /finish chat command

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

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

    return a.exec();
}