tools/drawMapTest/main.cpp
author Henek
Sun, 11 Dec 2011 14:52:02 +0100 (2011-12-11)
changeset 6523 666fccd5cb3a
parent 4425 2314bb0c433d
permissions -rw-r--r--
enable lua to also set rope length percent
#include <QtGui/QApplication>
#include "mainwindow.h"

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