tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 14 Aug 2018 09:15:20 +0200
changeset 13661 21a05ef25328
parent 4425 2314bb0c433d
permissions -rw-r--r--
HedgeEditor should be fairly stable by now

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

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