tools/templates/main.cpp
author unc0rr
Tue, 01 Apr 2008 16:11:07 +0000
changeset 831 5cfd1096be5f
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix counting damage given to mines - Use damaging ammo info to produce 'missed' sound only if damage should take place

#include <QApplication>

#include "mainform.h"

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