tools/drawMapTest/main.cpp
author unc0rr
Sat, 25 Aug 2012 23:00:19 +0400
changeset 7600 31a177d2856c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Disable workaround, as it still makes server crash and hung clients are hidden from players anyway

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

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