tools/drawMapTest/main.cpp
author antonc27 <antonc27@mail.ru>
Wed, 28 Oct 2015 03:41:00 +0100
branchios-revival
changeset 11254 7f3f96e9fdf1
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Fix for crash while deleting >=2 saved games Note: SavedGamesViewController certainly needs refactoring

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

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