tools/drawMapTest/main.cpp
author unc0rr
Wed, 24 Oct 2018 00:08:23 +0200
changeset 13953 e98e2fc556a7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Create replay file, run engine, result from it and send it to the server. Not implemented: filtering of engine output.

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

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