tools/drawMapTest/main.cpp
author nemo
Mon, 10 Oct 2011 15:25:59 -0400
changeset 6119 91792f506371
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make a few more things be impacted by explosions nearby

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

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