tools/drawMapTest/main.cpp
author nemo
Sun, 10 Feb 2013 09:22:29 -0500
changeset 8493 1a84f8b08ca7
parent 4425 2314bb0c433d
permissions -rw-r--r--
oops. more specific ammo tests. maybe could use a few more properties

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

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