tools/drawMapTest/main.cpp
author nemo
Sat, 17 Jan 2015 10:07:12 -0500
changeset 10791 0311c9fa7498
parent 4425 2314bb0c433d
permissions -rw-r--r--
tweak a few params. still something wtf going on when on rope

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

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