tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Thu, 05 Jul 2012 17:19:11 +0300
changeset 7236 378fc97dae99
parent 4425 2314bb0c433d
permissions -rw-r--r--
Reduced number of crates on the challenge in mission 1, fixed an error with mission 3 (at the end)

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

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