tools/drawMapTest/main.cpp
author sheepluva
Mon, 11 Apr 2011 01:30:43 +0200
changeset 5139 090a8b8d1083
parent 4425 2314bb0c433d
permissions -rw-r--r--
grenade back to old damage, but from now on explosions assume they are not closer to a gear's center than the gear's radius

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

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