tools/drawMapTest/main.cpp
author sheepluva
Sat, 01 Jan 2011 11:15:35 +0100
changeset 4800 83ee0a10903b
parent 4425 2314bb0c433d
permissions -rw-r--r--
my attempt of "detach rope if the Land[] vanishes"

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

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