tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 09 Aug 2018 17:47:29 +0200
changeset 13646 67d8f75f048d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Backout 0f02dd1ff4c9. This is not how TotalRounds should work

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

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