tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 22 Feb 2018 02:24:42 +0100
changeset 13062 8b44518d1002
parent 4425 2314bb0c433d
permissions -rw-r--r--
Convert Newton and the Hammock to SimpleMission format

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

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