tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 07 Mar 2018 18:27:14 +0100
changeset 13094 ffa5cdc75826
parent 4425 2314bb0c433d
permissions -rw-r--r--
Rope training: Fix confused order of retract/extend controls

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

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