tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 04 Oct 2018 20:36:41 +0200
changeset 13837 6e4e745f42bb
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix speech bubble chat commands also applying to bots

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

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

    return a.exec();
}