tools/drawMapTest/main.cpp
author Marcin Mielniczuk <marmistrz.dev@zoho.eu>
Fri, 06 Jul 2018 16:59:52 +0200
changeset 13450 d3c86ade3d4d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Send the rnd reply to the room only.

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

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