tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Oct 2017 17:21:34 +0200
changeset 12727 23fb2179945f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Sniper rifle mission: Fix targets spawning twice in dynamite scenes, jacking up the total amount of targets

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

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