tools/drawMapTest/main.cpp
author nemo
Sat, 25 Aug 2012 18:35:59 -0400
changeset 7603 e9c3c67b5dfd
parent 4425 2314bb0c433d
permissions -rw-r--r--
reducing this value is sufficient to ensure crates drop just below top border or a girder

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

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