tools/drawMapTest/main.cpp
author nemo
Wed, 22 Dec 2010 11:59:35 -0500 (2010-12-22)
changeset 4629 b5d726bc4f8d
parent 4425 2314bb0c433d
permissions -rw-r--r--
FindPlace in lua now returns null for failure to find a place, and accepts a 5th parameter to try finding a place without considering proximity (note that this can place a gear right next to mines).
#include <QtGui/QApplication>
#include "mainwindow.h"

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