tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Sun, 19 Aug 2012 12:31:04 +0300
changeset 7484 f3a7c4e75815
parent 4425 2314bb0c433d
permissions -rw-r--r--
Mission 7: changed enemy health, ammos, fixed crashes, princess no longer hidden

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

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