tools/templates/main.cpp
author sheepluva
Mon, 11 Apr 2011 01:30:43 +0200
changeset 5139 090a8b8d1083
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}