tools/drawMapTest/main.cpp
author nemo
Fri, 03 Apr 2015 16:39:09 -0400
changeset 10889 f7200e614295
parent 4425 2314bb0c433d
permissions -rw-r--r--
give melon pieces a radius. is why they weren't bouncing.

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

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