tools/drawMapTest/main.cpp
author alfadur
Thu, 01 Nov 2018 03:38:13 +0300
changeset 14059 3185fb34f3b5
parent 4425 2314bb0c433d
permissions -rw-r--r--
update theme editor to use new land generator implementation

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

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