tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Tue, 24 Jul 2012 20:15:30 +0300
changeset 7417 2520705b857f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Switched Fell From Heaven to Fell From Grace on missions 5, 6. Changed start dialogue of the princess in Mission 6.

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

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