tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Sat, 21 Jul 2012 01:54:41 +0300
changeset 7261 158f8fb74ded
parent 4425 2314bb0c433d
permissions -rw-r--r--
Placed hiding hogs at the end of StartMission in Mission 3

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

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