tools/drawMapTest/main.cpp
author nemo
Sun, 03 Jun 2012 18:52:22 -0400
changeset 7170 84ac6c6d2d8e
parent 4425 2314bb0c433d
permissions -rw-r--r--
Only create textures for non-empty LandPixel chunks. This should save a fair amount of memory, especially on smaller maps, and eliminate a number of draws

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

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