tools/drawMapTest/main.cpp
author Periklis Ntanasis <pntanasis@gmail.com>
Sat, 14 Sep 2013 00:39:59 +0300
branchspacecampaign
changeset 9622 db9f6b7955ba
parent 4425 2314bb0c433d
permissions -rw-r--r--
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy

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

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