tools/drawMapTest/main.cpp
author unc0rr
Sun, 28 Oct 2018 23:24:04 +0100
changeset 14047 3b3d97ed2286
parent 4425 2314bb0c433d
permissions -rw-r--r--
Start land generators implementation

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

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