tools/drawMapTest/main.cpp
author nemo
Sat, 10 Sep 2011 21:23:12 -0400
changeset 5844 fdf22a4843f7
parent 4425 2314bb0c433d
permissions -rw-r--r--
A hopefully reliable lua update. If I clobber anything, well, there's always file history ;)

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

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