tools/drawMapTest/main.cpp
author nemo
Fri, 03 Apr 2015 16:46:14 -0400
changeset 10891 a4c454ef80a6
parent 4425 2314bb0c433d
permissions -rw-r--r--
enable bounce on rubber for air bombs. give them the missing elasticity they needed for the code there to work properly.

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

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