tools/drawMapTest/main.cpp
author unc0rr
Thu, 26 Nov 2015 20:11:54 +0300
branchqmlfrontend
changeset 11437 97e3e62ea5f9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Update seed, theme and script from net in UI

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

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