tools/drawMapTest/main.cpp
author unc0rr
Tue, 06 Jan 2015 12:12:34 +0300
changeset 10777 18afcfaa4d5a
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Send maze_size command in other mapgen modes too - Fix drawn land mapgen detection

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

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