tools/drawMapTest/main.cpp
author nemo
Fri, 07 Oct 2011 17:29:00 -0400
changeset 6091 77b826a8f996
parent 4425 2314bb0c433d
permissions -rw-r--r--
Move the crystals to sprays to reduce the regularity of the land texture

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

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