tools/drawMapTest/main.cpp
author nemo
Wed, 12 Mar 2014 22:40:49 -0400
changeset 10193 d7cd5b43588f
parent 4425 2314bb0c433d
permissions -rw-r--r--
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.

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

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