tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 07 Aug 2018 01:52:40 +0200
changeset 13623 f66d8779e4dd
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix bee target practice removing target selection after first shot

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

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