tools/drawMapTest/main.cpp
author nemo
Thu, 23 Dec 2010 18:06:09 -0500
changeset 4655 b75bb4307b0f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Might want the snow actually showing up. Also disable it while rope is active due to bad side effects.

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

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