tools/drawMapTest/main.cpp
author sheepluva
Mon, 25 Nov 2013 10:12:18 +0100
changeset 9717 b8b7ef99a084
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't let (am)Nothing change allowed aiming angles. e.g. fixes aiming problems when on last rope. please test for possible side effects (flying saucer and whatnot)

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

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