tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 22 Oct 2017 02:25:27 +0200
changeset 12742 d08afea02908
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix bee homing incorrectly when target is across wrap world edge

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

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