tools/drawMapTest/main.cpp
author nemo
Tue, 16 Dec 2014 14:23:24 -0500
changeset 10681 474d418a34c5
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add nil checks on HHGear to rope steps.

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

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