tools/drawMapTest/main.cpp
author sheepluva
Sun, 09 Feb 2014 19:00:13 +0100
changeset 10126 2fa3bb7785ee
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix lq rope being always drawn on screen with same width regardless of zoom

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

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