tools/drawMapTest/main.cpp
author nemo
Sat, 21 May 2016 15:23:08 -0400
changeset 11831 dd18d8100afd
parent 4425 2314bb0c433d
permissions -rw-r--r--
Change this back to allowing hooking rope to hogs again, 'cause, well, rage...

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

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