tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Fri, 29 Jun 2012 14:39:05 +0300
changeset 7213 fce7de71742f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fixed some bugs with Mission 2 and Animate.lua.

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

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