tools/drawMapTest/main.cpp
author unc0rr
Mon, 02 Nov 2015 23:23:06 +0300
changeset 11268 096811aa3c55
parent 4425 2314bb0c433d
permissions -rw-r--r--
Let's try to store games info necessary for ratings

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

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