tools/drawMapTest/main.cpp
author nemo
Sun, 01 Nov 2015 15:08:39 -0500
changeset 11272 9621fdcad965
parent 4425 2314bb0c433d
permissions -rw-r--r--
do the same thing for the chute/birdy/saucer block

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

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