tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Tue, 15 Jun 2021 20:45:46 +0200
changeset 15792 191e51179d1b
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix detection of message author in ubot core

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

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

    return a.exec();
}