tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 11 Sep 2018 16:00:23 +0200
changeset 13797 c084bd440009
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add funny message in stats screen when everyone wins

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

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