tools/drawMapTest/main.cpp
author nemo
Thu, 23 Dec 2010 23:46:14 -0500
changeset 4659 ce5897f53072
parent 4425 2314bb0c433d
permissions -rw-r--r--
more fiddling with graphics to try and satisfy both fire and snow

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

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