tools/drawMapTest/main.cpp
author unc0rr
Sat, 30 Nov 2013 17:43:58 +0400
changeset 9729 6a3640c4f4b7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Show "incompatible version" message instead of "no such room" on try to join room with another protocol version

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

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