tools/templates/main.cpp
author unc0rr
Sun, 01 Mar 2009 17:36:44 +0000
changeset 1852 fa04a27005c3
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix crash when explosion is outside of the map (check was lost while refactoring)

#include <QApplication>

#include "mainform.h"

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