tools/drawMapTest/main.cpp
author sheepluva
Sun, 19 Jan 2014 17:53:16 +0100
changeset 10021 7f36194af01c
parent 4425 2314bb0c433d
permissions -rw-r--r--
no idea how I ended up forgetting about the offset I need for same position in different rows (in 1d array); also remove obsolete comment

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

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