tools/templates/main.cpp
author nemo
Fri, 07 Jun 2013 14:44:34 -0400
changeset 9148 78c699d8fdfd
parent 359 59fbfc65fbda
permissions -rw-r--r--
move 0.01 to the end to avoid increase damage fail on small values like fire. thanks to hedgewars wiki for noting this for fire damage.

#include <QApplication>

#include "mainform.h"

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