tools/drawMapTest/main.cpp
author unc0rr
Fri, 02 Jan 2015 22:07:31 +0300
changeset 10740 c9db53de9c3b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Generate config for 'world edge' and 'script param' scheme options

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

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