tools/drawMapTest/main.cpp
author sheepluva
Tue, 17 Jun 2014 23:53:59 +0200
changeset 10322 6f1f8515181c
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix typo that caused visual glitch in water body (e.g. visible on that particular screenie on bottom right corner)

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

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