tools/drawMapTest/main.cpp
author nemo
Sat, 04 Aug 2012 20:47:13 -0400
changeset 7477 26706bf32ecf
parent 4425 2314bb0c433d
permissions -rw-r--r--
First pass at variable land size. For playing a small map (forced on rqLowRes), this should save 42MiB of RAM.

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

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