tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Sun, 19 Aug 2012 23:05:41 +0300
changeset 7502 16c36f62247b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Solved issues with HideHog in mission 2 and 3

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

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