tools/drawMapTest/main.cpp
author unc0rr
Mon, 15 Apr 2013 00:04:13 +0400
changeset 8910 a60f7ebab219
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix hedgehogs number desync. Now all desyncs except the one from issue #521 should be fixed. Please, test.

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

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