tools/drawMapTest/main.cpp
author nemo
Thu, 01 Jan 2015 12:43:00 -0500
changeset 10736 5b7cf9fcb47e
parent 4425 2314bb0c433d
permissions -rw-r--r--
Try to handle negative gravity w/ snow. Still needs to look nicer. Currently causes banding.

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

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