tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 31 Oct 2018 13:35:53 +0100
changeset 14062 44f20c9e6861
parent 359 59fbfc65fbda
permissions -rw-r--r--
Add Ouch taunt for particulary damaging hits (fall, bullet, shove, hammer)

#include <QApplication>

#include "mainform.h"

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