tools/drawMapTest/main.cpp
author nemo
Wed, 18 Oct 2017 20:33:20 -0400
changeset 12711 20dbb3a03e61
parent 4425 2314bb0c433d
permissions -rw-r--r--
extend land digest to all surfaces that could possibly be loaded into Land[] - i.e. ones that impact sync

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

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