tools/drawMapTest/main.cpp
author unc0rr
Mon, 23 Jun 2014 22:22:29 +0400
changeset 10337 05a5762ab12c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Allow server admins to join room of 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();
}